index.js 190 B

12345678910
  1. import { Row } from '../grid';
  2. import Base from '../base';
  3. /* istanbul ignore next */
  4. Row.install = function (Vue) {
  5. Vue.use(Base);
  6. Vue.component(Row.name, Row);
  7. };
  8. export default Row;