Vue.js boilerplate for setting up your own component library
All components are stored in the src/components
directory.
The docs
directory is a vue application in which you can use your new components and create documentation.
Styles are in the src/scss
directory and are compiled into 1 file.
Download or fork this repo and start building your own components.
npm install YOUR_LIBRARY
import Vue from 'vue';
import YOUR_LIBRARY from 'THE_NAME_OF_YOUR_LIBRARY';
import 'THE_NAME_OF_YOUR_LIBRARY/lib/main.css';
Vue.use(YOUR_LIBRARY);
// OR
Vue.component(YOUR_LIBRARY.Test.name, YOUR_LIBRARY.Test);
...