[Vuejs]-Vue Failed to mount component: template or render function not defined

1👍

Did you mount the Vue app? You are missing that code from your app.js file.

var app = new Vue({
    el: '#app',    
});

Edit 2

Use the import syntax

import Terms from './components/legal/terms.vue';
Vue.component('terms', Terms);

Leave a comment