mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
|
const ElDialog = require('./src/component');
|
||
|
|
||
|
ElDialog.install = function(Vue) {
|
||
|
Vue.component('el-dialog', ElDialog);
|
||
|
};
|
||
|
|
||
|
module.exports = ElDialog;
|