UNPKG

buefy

Version:

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

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