import { default as VSelect } from './VSelect/index'
interface IComponent {
  [key: string]: any
}
const components: any = [VSelect]

const install = function(app: any) {
  // if (install?.installed) return
  components.map((component: any) => app.use(component))
}

export default {
  install,
  ...components
}
