1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2025-07-02 17:29:23 +00:00
Classworks/src/main.js
SunWuyuan 10b7f3784f
1
2025-03-08 21:51:00 +08:00

25 lines
372 B
JavaScript

/**
* 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'
import messageService from './utils/message';
const app = createApp(App)
registerPlugins(app)
app.use(messageService);
app.mount('#app')