UNPKG

buefy

Version:

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

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