import SvComponent from '../../../types/component' import { VueConstructor } from 'vue/types/index' import select from './src/sv-select.vue' import option from './src/sv-option.vue' export const SvSelect = select as SvComponent export const SvOption = option as SvComponent SvSelect.install = function (Vue: VueConstructor) { Vue.component('svSelect', SvSelect) } SvOption.install = function (Vue: VueConstructor) { Vue.component('svOption', SvOption) } export default SvSelect