UNPKG

buefy

Version:

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

18 lines (12 loc) 289 B
import type { App } from 'vue' import Datepicker from './Datepicker.vue' import { registerComponent } from '../../utils/plugins' const Plugin = { install(Vue: App) { registerComponent(Vue, Datepicker) } } export default Plugin export { Datepicker as BDatepicker }