element/packages/select/index.js

9 lines
161 B
JavaScript
Raw Normal View History

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