UNPKG

zj-element

Version:

基于ElementUI的VUE组件——Жидзин(Zidjin)系列组件库。

44 lines (40 loc) 1.34 kB
// module.exports = require('../dist/hashids.js').default // import ZjElement from './src/zj-form/zj-form.vue'; import ZjForm from './src/zj-form/zj-form.vue'; import ZjTable from './src/zj-table/zj-table.vue'; import ZjDialog from './src/zj-dialog/zj-dialog.vue'; import ZjSwitchBar from './src/zj-switch-bar/zj-switch-bar.vue'; import ZjSearchBar from './src/zj-search-bar/zj-search-bar.vue'; import ZjPagination from './src/zj-pagination/zj-pagination.vue'; import ZjTree from './src/zj-tree/zj-tree.vue' import ZjMenu from './src/zj-menu/zj-menu.vue'; import ZjLoading from './src/zj-loading/zj-loading.vue'; let ZjElement = { // ZjForm, // ZjTable, // ZjDialog, } /* istanbul ignore next */ ZjElement.install = function(Vue) { Vue.component(ZjForm.name, ZjForm); Vue.component(ZjTable.name, ZjTable); Vue.component(ZjDialog.name, ZjDialog); Vue.component(ZjSwitchBar.name, ZjSwitchBar); Vue.component(ZjSearchBar.name, ZjSearchBar); Vue.component(ZjPagination.name, ZjPagination); Vue.component(ZjMenu.name, ZjMenu); Vue.component(ZjTree.name, ZjTree); Vue.component(ZjLoading.name, ZjLoading); }; export default ZjElement; export { ZjForm, ZjTable, ZjDialog, ZjSwitchBar, ZjSearchBar, ZjPagination, ZjMenu, ZjTree, ZjLoading, };