UNPKG

buefy

Version:

Lightweight UI components for Vue.js (v3) based on Bulma

20 lines (15 loc) 354 B
import type { App } from 'vue' import Tag from './Tag.vue' import Taglist from './Taglist.vue' import { registerComponent } from '../../utils/plugins' const Plugin = { install(Vue: App) { registerComponent(Vue, Tag) registerComponent(Vue, Taglist) } } export default Plugin export { Tag as BTag, Taglist as BTaglist }