mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 21:27:52 +08:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
const ElCol = require('./src/col');
|
|
|
|
/* istanbul ignore next */
|
|
ElCol.install = function(Vue) {
|
|
Vue.component(ElCol.name, ElCol);
|
|
};
|
|
|
|
module.exports = ElCol;
|
|
|