mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-17 03:31:07 +00:00
15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
|
|
import Vue from 'vue';
|
||
|
|
import VueMaterial from '../vue-material';
|
||
|
|
|
||
|
|
for (let component in VueMaterial) {
|
||
|
|
if (component === 'MdTheme') {
|
||
|
|
Vue.use(VueMaterial[component], {
|
||
|
|
'bottom-bar': {
|
||
|
|
primary: 'teal'
|
||
|
|
}
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
Vue.use(VueMaterial[component]);
|
||
|
|
}
|
||
|
|
}
|