Join the community and participate in the ongoing discussions.
Join Now!
[Vue warn]: Failed to mount component: template or render function not defined. solution
import Vue from 'vue'
import App from './App.vue'
Vue.component('app',
require('./App.vue').default
);
new Vue({
el: '#app',
render (h) {
return h('app')
}
})

19th Aug, 2020 @ 09:18 pm