Official CNAM component library
vue-dot
Official CNAM component library.
As Easy as 1, 2, 3
Install
yarn add @cnamts/vue-dot # OR npm install @cnamts/vue-dot
Load
// main.ts
import Vue from 'vue';
import VueDot from '@cnamts/vue-dot';
Vue.use(VueDot);
new Vue({
render: (h) => h(App)
}).$mount('#app');
You're done! ?
# run your project
yarn serve # OR your own command
It automatically load all components and directives of the library and made them available globally.