diff --git a/docs/pages/basics/guide-vue/index.md b/docs/pages/basics/guide-vue/index.md index 0c88a5a0be98..66935124dc9c 100644 --- a/docs/pages/basics/guide-vue/index.md +++ b/docs/pages/basics/guide-vue/index.md @@ -38,6 +38,18 @@ Make sure that you have `vue` in your dependencies as well because we list is as npm i --save vue ``` +## Create the NPM script + +Add the following NPM script to your `package.json` in order to start the storybook later in this guide: + +``` +{ + "scripts": { + "storybook": "start-storybook -p 9001 -c .storybook" + } +} +``` + ## Create the config file Storybook can be configured in several different ways.