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);
Source:stackexchange.com