mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-11 00:33:16 +00:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
|
|
import MdButton from './mdButton.vue';
|
||
|
|
import MdLinkButton from './mdLinkButton.vue';
|
||
|
|
|
||
|
|
export default function install(Vue) {
|
||
|
|
Vue.component('md-button', Vue.extend(MdButton));
|
||
|
|
Vue.component('md-link-button', Vue.extend(MdLinkButton));
|
||
|
|
}
|