Show the full updated example
I would assume it is something like
import Vue from 'vue';
import ExampleComponent from './components/ExampleComponent.vue';
Vue.component('example-component', ExampleComponent);
const app = new Vue({
el: '#app',
});