UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

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