mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
import ElCol from './src/col';
|
|
|
|
/* istanbul ignore next */
|
|
ElCol.install = function(Vue) {
|
|
Vue.component(ElCol.name, ElCol);
|
|
};
|
|
|
|
export default ElCol;
|
|
|