import { createApp } from 'vue' import App from './App.vue' import './style.css' // Create and mount the Vue app const app = createApp(App) app.mount('#app')