index.js 161 B

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