UNPKG

v-tree-vue

Version:

A light-weight library for management of hierachical content. Most solutions I found did not offer the depth of flexibility I needed with the tree. I decided to solve my problem and also give back to the Vue community. Feel free to log issues, I will jump

14 lines (9 loc) 260 B
import Vue from 'vue' import App from './App.vue' import '@/styles/style.css'; import TreeViewPlugin from './plugins/TreeViewPlugin'; Vue.config.productionTip = false Vue.use(TreeViewPlugin); new Vue({ render: h => h(App), }).$mount('#app')