element/packages/row/index.js

10 lines
144 B
JavaScript
Raw Normal View History

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