vue-material/src/docs/config.js

23 lines
327 B
JavaScript
Raw Normal View History

2016-07-21 21:56:06 +00:00
import Vue from 'vue';
import VueMaterial from '../vue-material';
VueMaterial.enableAll(Vue);
Vue.use(VueMaterial.MdTheme, {
default: {
primary: {
color: 'green',
hue: 800
}
},
indigo: {
primary: 'indigo'
},
orange: {
primary: 'orange'
},
'bottom-bar': {
primary: 'teal'
2016-07-21 21:56:06 +00:00
}
});