Vue Styleguidist
Learn what the Vue Styleguidist is and how it’s used to generate documentation.
We'll cover the following...
Vue Styleguidist is an isolated Vue component development environment with a living style guide.
Installation
There are a few ways to install it, but if the project was scaffolded with VueCLI, we could add it by running vue add styleguidist in our project. This command automatically:
- Installs Vue Styleguidist.
 - Creates a config file called 
styleguide.config.jsat the root of the project. We can find the full config guide here. - Creates a component called 
app-button.vuein thecomponentsdirectory. - Adds 
styleguideandstyleguide:buildcommands to thepackage.jsonfile. 
Note: Vue Styleguidist is still working on Vue 3 support at this time. Therefore, the code below was written in a Vue 2 project. When reading this, there might already be a Vue 3 compatible version. We can track the progress in this Github issue. ...
 Ask