mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
const Alert = require('./src/main');
|
|
|
|
/* istanbul ignore next */
|
|
Alert.install = function(Vue) {
|
|
Vue.component(Alert.name, Alert);
|
|
};
|
|
|
|
module.exports = Alert;
|