mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-10 16:24:48 +00:00
8 lines
229 B
JavaScript
8 lines
229 B
JavaScript
import MdButton from './mdButton.vue';
|
|
import MdButtonTheme from './mdButton.theme';
|
|
|
|
export default function install(Vue) {
|
|
Vue.component('md-button', Vue.extend(MdButton));
|
|
|
|
window.VueMaterial.styles.push(MdButtonTheme);
|
|
}
|