Storybook for Vue

Automatic setup

You may have tried to use our quick start guide to setup your project for Storybook.If it failed because it couldn’t detect you’re using vue, you could try forcing it to use vue:

  1. npx -p @storybook/cli sb init --type vue

Manual setup

If you want to set up Storybook manually for your Vue project, this is the guide for you.

Step 1: Add dependencies

Add @storybook/vue

Add @storybook/vue to your project. To do that, run:

  1. npm install @storybook/vue --save-dev

Add peer dependencies

Make sure that you have vue, vue-loader, vue-template-compiler, @babel/core, babel-loader and babel-preset-vue in your dependencies as well, because we list these as a peer dependencies:

  1. npm install vue --save
  2. npm install vue-loader vue-template-compiler @babel/core babel-loader babel-preset-vue --save-dev

Step 2: Add an npm script

Then add the following NPM script to your package.json in order to start the storybook later in this guide:

  1. {
  2. "scripts": {
  3. "storybook": "start-storybook"
  4. }
  5. }

Step 3: Create the config file

For a basic Storybook configuration, the only thing you need to do is tell Storybook where to find stories.

To do that, create a file at .storybook/config.js with the following content:

  1. import { configure } from '@storybook/vue';
  2. configure(require.context('../src', true, /\.stories\.js$/), module);

That will load all the stories underneath your ../src directory that match the pattern *.stories.js. We recommend co-locating your stories with your source files, but you can place them wherever you choose.

You might be using global components or vue plugins such as vuex, in that case you’ll need to register them in this config.js file.

details
  1. import { configure } from '@storybook/vue';import Vue from 'vue';// Import Vue pluginsimport Vuex from 'vuex';// Import your global components.import Mybutton from '../src/stories/Button.vue';// Install Vue plugins.Vue.use(Vuex);// Register global components.Vue.component('my-button', Mybutton);configure(require.context('../src', true, /.stories.js$/), module);

This example registered your custom Button.vue component, installed the Vuex plugin, and loaded your Storybook stories defined in ../src/index.stories.js.

All custom components and Vue plugins should be registered before calling configure().

Step 4: Write your stories

Now create a ../stories/index.js file, and write your first story like this:

  1. import Vue from 'vue';
  2. import MyButton from './Button.vue';
  3. export default { title: 'Button' };
  4. export const withText = () => '<my-button>with text</my-button>';
  5. export const withEmoji = () => '<my-button>😀 😎 👍 💯</my-button>';
  6. export const asAComponent = () => ({
  7. components: { MyButton },
  8. template: '<my-button :rounded="true">rounded</my-button>'
  9. });

Each story is a single state of your component. In the above case, there are three stories for the demo button component:

  1. Button
  2. ├── With Text
  3. ├── With Emoji
  4. └── As A Component

If your story is returning a plain template you can only use globally registered components.

To register them, use Vue.component('my-button', Mybutton) in your config.js file.

details

If your story returns a plain string like below, you will need to register globally each VueJs component that it uses.

  1. export const withText = () => '<my-component>with text</my-component>';

In big solutions, globally registered components can conflict with each other.

Here are two other ways to use components in your stories without globally registering them.

  • register components locally in the “components” member of the vue component object. See the story “as a component” above.
  • use a JSX render function like below. No need to register anything.
  1. export const withText = () => ({render: h => <my-component>with text</my-component>});

Finally: Run your Storybook

Now everything is ready. Run your storybook with:

  1. npm run storybook

Storybook should start, on a random open port in dev-mode.

Now you can develop your components and write stories and see the changes in Storybook immediately since it uses Webpack’s hot module reloading.