UNPKG

buefy

Version:

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

17 lines (12 loc) 268 B
import type { App } from 'vue' import Button from './Button.vue' import { registerComponent } from '../../utils/plugins' const Plugin = { install(Vue: App) { registerComponent(Vue, Button) } } export default Plugin export { Button as BButton }