9 lines
189 B
Java
9 lines
189 B
Java
![]() |
import { Col } from '../grid';
|
||
|
import Base from '../base';
|
||
|
/* istanbul ignore next */
|
||
|
Col.install = function (Vue) {
|
||
|
Vue.use(Base);
|
||
|
Vue.component(Col.name, Col);
|
||
|
};
|
||
|
|
||
|
export default Col;
|