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