1.0.6 • Published 2 years ago

pym-jcxg-list v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

物管中心物品分类列表组件

Install

Using npm:

    npm install pym-categories-goods --save

全局引用:在main.js中配置纠错列表组件引用

    // main.js
    import categoriesList from 'pym-categories-goods';
    Vue.use(categoriesList);
    
    // test.vue
    <CategoriesList wplx="1"/>

局部引用:在引用模块中引用

    // test.vue
    <template>
        <CategoriesList wplx="1"/>
    </template>
    import {CategoriesList} from 'pym-categories-goods';
    export default {
        components:{
            CategoriesList
        }
    }