18 lines
252 B
JavaScript
18 lines
252 B
JavaScript
import Button from './Button'
|
|
|
|
import { use, registerComponent } from '../../utils/plugins'
|
|
|
|
const Plugin = {
|
|
install(Vue) {
|
|
registerComponent(Vue, Button)
|
|
}
|
|
}
|
|
|
|
use(Plugin)
|
|
|
|
export default Plugin
|
|
|
|
export {
|
|
Button
|
|
}
|