element/packages/row/index.js

10 lines
144 B
JavaScript
Raw Normal View History

import Row from './src/row';
2016-07-27 06:15:02 +00:00
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
Row.install = function(Vue) {
Vue.component(Row.name, Row);
2016-07-27 06:15:02 +00:00
};
export default Row;
2016-07-27 06:15:02 +00:00