mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-13 11:34:02 +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;
|
|
|