1๐
โ
If you are using eslint, try removing comma.
import Vue from 'vue'
import App from './App.vue'
Vue.config.productionTip = false
new Vue({
render: h => h(App), //please remove the comma
}).$mount('#app')
Source:stackexchange.com