2025-04-02 21:57:33 +08:00

10 lines
190 B
JavaScript

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;