我通过将以下内容添加到我的 index.js 文件中来使用 Vue Material default-dark 主题...
// index.js Where the vue instance is instantiated
import 'vue-material/dist/theme/default-dark.css';
...
import Vue from "vue";
...
Vue.use(VueRouter);
const routes = [
{
path: '/',
component: Viewport,
...
}
]
...
window.app.$mount('#jg-app');
这很好用,但现在我想更改主题的颜色。为此,我在模板中添加了以下内容...
// viewport/Viewport.vue
<styles src="./Viewport.scss" lang="scss"></styles>
并在 Viewport.scss 中(根据文档)...
# viewport/Viewport.scss
@import "~vue-material/dist/theme/engine"; // Import the theme engine
@include md-register-theme("default-dark", (
primary: md-get-palette-color(green, A200), // The primary color of your application
accent: md-get-palette-color(yellow, A200) // The accent or secondary color
));
@import "~vue-material/dist/theme/all";
但是当我构建颜色时,颜色并没有像我预期的那样改变。我看到该元素被标记为主要元素,但它仍然显示为蓝色。
我错过了什么?