mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
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 [Yarn](https://yarnpkg.com/), [npm](https://www.npmjs.com/), and [pnpm](https://pnpm.io/) package managers. If you have Yarn installed in your environment but prefer to use another as your default package manager add the `--package-manager` flag to your installation command. For example:
|
|
|
|
```shell
|
|
npx storybook init --package-manager=npm
|
|
```
|
|
|
|
- For other installation issues, check the Vue README files for additional instructions:
|
|
- [Vue 2 with Webpack](https://github.com/storybookjs/storybook/tree/next/code/frameworks/vue-webpack5)
|
|
- [Vue 2 with Vite](https://github.com/storybookjs/storybook/tree/next/code/frameworks/vue-vite)
|
|
- [Vue 3 with Webpack](https://github.com/storybookjs/storybook/tree/next/code/frameworks/vue3-webpack5)
|
|
- [Vue 3 with Vite](https://github.com/storybookjs/storybook/tree/next/code/frameworks/vue3-vite)
|