RP-01_VueHost/src/main.js

21 lines
299 B
JavaScript
Raw Normal View History

2025-03-29 09:02:51 +08:00
/**
* main.js
*
* 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')