UNPKG

@coreui/vue-pro

Version:

UI Components Library for Vue.js

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