mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
19 lines
644 B
Plaintext
19 lines
644 B
Plaintext
Use the Storybook CLI to install it in a single command. Run this inside your existing Vue 2 project’s root directory:
|
||
|
||
```shell
|
||
# Add Storybook:
|
||
npx -p @storybook/cli sb init
|
||
```
|
||
|
||
For Vue 3 projects, run this inside your project’s root directory:
|
||
|
||
```shell
|
||
# Add Storybook 🔥 pre-release 🔥 version:
|
||
|
||
npx sb@next init
|
||
```
|
||
|
||
This command installs the latest pre-release version of Storybook with a new package (📦 [`@storybook/vue3`](https://www.npmjs.com/package/@storybook/vue3)), created specifically for Vue 3.
|
||
|
||
If you run into issues with the installation, check the troubleshooting section below for guidance on how to solve it.
|