[Vuejs]-Webpack and Vue.js: template or render function not defined

0👍

The problem was with the main.js file. Instead of this line:

Vue.component('my-component', require('./components/MyComponent.vue'));

I need to use this:

import MyComponent from './components/MyComponent.vue';
Vue.component('my-component', MyComponent);

Leave a comment