Files
skt-vuetify-templates/src/main.ts
T
skytek_xinliang 507afcc99c feat: project init
2026-03-26 10:08:35 +08:00

22 lines
300 B
TypeScript

/**
* 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'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')