Skip to content

Aaron-Pool/Vue-Cli-Storybook-Docs

Repository files navigation

Vue Cli + Typescript + Storybook + Addon Docs Working Example

I've seen a lot of people struggle to get storybook and vue CLI working side-by-side, particularly with the new addon-docs. So here's a working example.

Steps I used to create:

  1. Init a typescript project with Vue-Cli (v4, which was just released)
  2. Add Vue Cli Storybook Plugin
  3. Disable Vue Jsx in the babel config (Vue Jsx is temporarily incompatible with addon-docs):
// babel.config.js
module.exports = {
  presets: [["@vue/cli-plugin-babel/preset", {
    jsx: false
  }]]
};

Install dependencies

yarn

Activates storybook server and begins code watch

yarn storybook:serve

Builds a static version of storybook

yarn storybook:build

Lints and fixes files

yarn lint --fix

About

A working example of Storybook running with Vue-Cli, the Docs addon, and TypeScript

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published