1.0.1 • Published 2 years ago

cia-components v1.0.1

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

cia组件

Install

Using npm:

    npm install cia-components --save

, , , , ,

全局引用:在main.js中配置引用,目前内嵌6个组件: 1、自定义弹窗 customDialog 2、列表组件 dataGrid 3、字典 dic 4、流程审批 flowGeneralAudit 5、流程审批记录 flowGeneralHistory 6、流程启动 startApproval

    // main.js 示例
    import cia from 'cia-components'; 
    Vue.use(cia);
    
    // test.vue
    import {customDialog} from 'cia-components'; 

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

    
    <template>
        <custom-dialog></custom-dialog>
    </template>
    import {customDialog} from 'cia-component';
    export default {
        components:{
            customDialog
        }
    }