UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

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