mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:31:06 +08:00
18 lines
936 B
Plaintext
18 lines
936 B
Plaintext
- Add the `--type vue` (for Vue 2), or `--type vue3` (for Vue 3) flag to the installation command to set up Storybook manually:
|
|
|
|
```shell
|
|
# For Vue 2 projects
|
|
npx storybook init --type vue
|
|
|
|
# For Vue 3 projects
|
|
npx storybook init --type vue3
|
|
```
|
|
|
|
- Storybook's CLI provides support for both [Yarn](https://yarnpkg.com/) and [npm](https://www.npmjs.com/) package managers. If you have Yarn installed in your environment but prefer to use npm as your default package manager add the `--use-npm` flag to your installation command. For example:
|
|
|
|
```shell
|
|
npx storybook init --use-npm
|
|
```
|
|
|
|
- For other installation issues, check the [Vue 2 README](../../app/vue/README.md), or the [Vue 3 README](../../app/vue3/README.md) for additional instructions.
|
|
- Vue 3 support is under active development, and we encourage feedback and improvements. Check the [contribution guidelines to help us improve it](../../CONTRIBUTING.md). |