element/packages/select/_index.js

13 lines
343 B
JavaScript
Raw Normal View History

import Select from './src/select';
import Option from './src/option';
import OptionGroup from './src/option-group';
2016-10-13 09:51:14 +00:00
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
export default function(Vue) {
Vue.component(Select.name, Select);
Vue.component(Option.name, Option);
Vue.component(OptionGroup.name, OptionGroup);
2016-10-13 09:51:14 +00:00
};
export { Select, Option, OptionGroup };