"failed To Mount Component” Error On Laravel 5.3.10 + Vue.js 2.0.1
Solution 1:
You need to register the InputText component in order to use it within your root component. Here it is using the ES2015 shorthand.
importVuefrom'vue'importInputTextfrom'./components/InputText.vue'newVue({
components: {
InputText
},
render(h) {
returnh(InputText)
}
}).$mount('#app')
Solution 2:
Add esModule: true
next to loaders
under vue
in your webpack.config.js
and you should be good to go.
Alternatively you may use const Vue = require('vue')
instead of import Vue from 'vue'
which tries to load the default
export from the generated module from your component, and it is unable to do so, unless you tell the vue-loader to generate compatible code.
Actually it is a more general incompatibility between the specs, where export default foo
doesn't mean the same as module.exports = foo
. When you require
the former, it will give you an object { default: foo }
whereas the latter will return foo
unencapsulated.
That's why you have to tell vue-loader if you are using either of the specs.
Post a Comment for ""failed To Mount Component” Error On Laravel 5.3.10 + Vue.js 2.0.1"