2025-04-09 14:33:05 +08:00

21 lines
413 B
JavaScript

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