我正在尝试在Vue JS 2应用程序中应用自定义主题。在我的代码中,有一个 custom-theme.css 文件,如下所示,
@import "~vue-material/dist/theme/engine";
@include md-register-theme("default", (
primary: md-get-palette-color(blue, A200), // The primary color of your application
accent: md-get-palette-color(red, A200) // The accent or secondary color
));
@import "~vue-material/dist/theme/all";
我已将此文件导入App.vue,但出现此错误“未能找到'〜vue-material / dist / theme / engine”。谁能帮我-如何在vue js 2应用程序中自定义主题。