0👍
Your babel.config.js file looks ill-formatted, it should be probably
module.exports = {
presets: [
"@vue/cli-plugin-babel/preset", [
"@vue/app",
{
modules: "commonjs"
}
]
]
};
Note the comma after "@vue/cli-plugin-babel/preset"
and the lack of parentheses (
and )
.
- [Vuejs]-Vuex/quasar – mutate state from firebase 9 on boot
- [Vuejs]-Adding Props to found components throw the mounted wrapper
Source:stackexchange.com