UNPKG

@coreui/vue-pro

Version:

UI Components Library for Vue.js

11 lines (8 loc) 213 B
import { App } from 'vue' import { CPicker } from './CPicker' const CPickerPlugin = { install: (app: App): void => { app.component(CPicker.name as string, CPicker) }, } export { CPicker, CPickerPlugin }