1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25/** * main.ts * * Bootstraps Vuetify and other plugins then mounts the App` */ // Composables import { createApp } from 'vue' // Plugins import { registerPlugins } from '@/plugins' // Components import App from './App.vue' import 'virtual:uno.css' // Styles import 'unfonts.css' const app = createApp(App) registerPlugins(app) app.mount('#app')