buefy
Version:
Lightweight UI components for Vue.js based on Bulma
21 lines (15 loc) • 352 B
JavaScript
import Table from './Table'
import TableColumn from './TableColumn'
import { use, registerComponent } from '../../utils/plugins'
const Plugin = {
install(Vue) {
registerComponent(Vue, Table)
registerComponent(Vue, TableColumn)
}
}
use(Plugin)
export default Plugin
export {
Table,
TableColumn
}