Open davidbitton opened 2 years ago
In one of my projects where I bundle Vue with webpack, this happens when I change import Vue from 'vue';
to const Vue = require('vue');
. No idea why.
Depending on the import mechanism, Vue's default export might be hidden in a property called default
. So if you have
const Vue = require('vue');
change it to:
const Vue = require('vue').default;
Using the template from scratch without further modification,
Vue.config.devtools = false
in 'renderer/index.js'. Any idea about what may be missing? Thanks!