ApfelNetzwerk/web/src/main.ts
2024-10-08 11:44:24 +02:00

23 lines
301 B
TypeScript

/**
* main.ts
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Plugins
import { registerPlugins } from '@/plugins'
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')