Electron-VueでVuetifyを使用した際に「[Vuetify] Multiple instances of Vue detected」が発生する時の対処法
Electron-VueにVuetifyを追加したときに、以下のようなErrorがconsoleに表示されました。
その対処法です。
対処法
https://github.com/vuetifyjs/vuetify/issues/4068 に記載の通り
webpack.renderer.config.jsのwhiteListedModulesの定義にvuetifyを追加することで解消できます。
.electreon-vue/webpack.renderer.config.js
- let whiteListedModules = ['vue']
+ let whiteListedModules = ['vue', 'vuetify']
Author And Source
この問題について(Electron-VueでVuetifyを使用した際に「[Vuetify] Multiple instances of Vue detected」が発生する時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/ryo2132/items/035e9745f941c6c98654著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .