index.js 144 B

123456789
  1. import Row from './src/row';
  2. /* istanbul ignore next */
  3. Row.install = function(Vue) {
  4. Vue.component(Row.name, Row);
  5. };
  6. export default Row;