UNPKG

@ishitatsuyuki/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

20 lines (14 loc) 376 B
import { App, Plugin } from 'vue' import Table from './Table.vue' import TableColumn from './TableColumn.vue' import { registerComponent } from '../../utils/plugins' export default { install(app: App) { registerComponent(app, Table) registerComponent(app, TableColumn) } } as Plugin export { Table as OTable, TableColumn as OTableColumn }