milnode
Version:
Vue.js Component Framework, build on top of vuetify
19 lines (14 loc) • 513 B
Markdown
1. Just use `npm install --save milnode`
2. Now you can include the scripts by using following snippet:
```
import Components from 'milnode'
// Global registration in your main.js/App.vue file
Object.entried(Components).forEach((name, component) => {
Vue.component(name, component)
})
```
All components are registered with the Vue global and are available for use. You do not need to re-register them.
TODO...