UNPKG

@coreui/vue-pro

Version:

UI Components Library for Vue.js

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