import { createApp } from 'vue' import './app.css' import App from './App.vue' const app = createApp(App) app.mount('#app') export default app