mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-11 16:53:09 +00:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
import mdSwitch from './mdSwitch.vue';
|
|
import mdSwitchTheme from './mdSwitch.theme';
|
|
|
|
export default function install(Vue) {
|
|
Vue.component('md-switch', Vue.extend(mdSwitch));
|
|
|
|
Vue.material.styles.push(mdSwitchTheme);
|
|
}
|