Skip to content

Commit

Permalink
Merge pull request #6108 from breadadams/hotfix-vue-docs
Browse files Browse the repository at this point in the history
Update Vue "manual setup" steps
  • Loading branch information
shilman authored Mar 15, 2019
2 parents 97079c4 + bde3f86 commit 7b261db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/pages/guides/guide-vue/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ Add `@storybook/vue` to your project. To do that, run:
npm install @storybook/vue --save-dev
```

### Add vue, vue-dom, @babel/core, and babel-loader
### Add peer dependencies

Make sure that you have `vue`, `vue-loader`, `vue-template-compiler`, `@babel/core`, and `babel-loader` in your dependencies as well because we list these as a 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:

```sh
npm install vue --save
npm install babel-loader vue-loader vue-template-compiler @babel/core --save-dev
npm install vue-loader vue-template-compiler @babel/core babel-loader babel-preset-vue --save-dev
```

## Step 2: Add a npm script
Expand Down

0 comments on commit 7b261db

Please sign in to comment.