element/packages/dialog/index.js

9 lines
181 B
JavaScript
Raw Normal View History

2016-07-27 06:15:02 +00:00
const ElDialog = require('./src/component');
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-07-27 06:15:02 +00:00
ElDialog.install = function(Vue) {
2016-10-13 09:51:14 +00:00
Vue.component(ElDialog.name, ElDialog);
2016-07-27 06:15:02 +00:00
};
module.exports = ElDialog;