mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 19:27:44 +08:00
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
const Alert = require('./src/main');
|
|
|
|
Alert.install = function(Vue) {
|
|
Vue.component(Alert.name, Alert);
|
|
};
|
|
|
|
module.exports = Alert;
|