import SvComponent from '../../../types/component' import { VueConstructor } from 'vue/types/index' import input from './src/sv-input.vue' export const SvInput = input as SvComponent SvInput.install = function (Vue: VueConstructor) { Vue.component('svInput', SvInput) } export default SvInput