mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-21 13:31:52 +00:00
10 lines
337 B
JavaScript
10 lines
337 B
JavaScript
import MdButton from './mdButton.vue';
|
|
import MdLinkButton from './mdLinkButton.vue';
|
|
import MdButtonTheme from './mdButton.theme';
|
|
|
|
export default function install(Vue) {
|
|
Vue.component('md-button', Vue.extend(MdButton));
|
|
Vue.component('md-link-button', Vue.extend(MdLinkButton));
|
|
|
|
window.VueMaterial.styles.push(MdButtonTheme);
|
|
}
|