import { createApp } from 'vue'; import App from 'views/app/app.vue' const app = createApp(App); app.mount('#app');