[Vuejs]-Vue JS Main.js failed to compile

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')

Leave a comment