UNPKG

vue-el-tree-custom

Version:

``` npm install vue-el-tree-custom ``` ### 使用

13 lines (10 loc) 385 B
import VueElTreeCustom from './components/index.vue' // 创建 install 函数 // vue.use 会默认查找并调用 install 函数 const VueElTreeCustom_vue = { install: (Vue) => { // 注意:第一个参数是组件名称,我们在页面引用时用到 Vue.component(VueElTreeCustom.name, VueElTreeCustom) } } export default VueElTreeCustom_vue