RP-01_VueHost/src/main.js

21 lines
413 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'
2025-04-09 14:33:05 +08:00
//import { registerPlugins } from './plugins/index.js';
2025-03-29 09:02:51 +08:00
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
2025-04-09 14:33:05 +08:00
//import { createApp } from './vue/dist/vue.esm-browser.js'
2025-03-29 09:02:51 +08:00
const app = createApp(App)
registerPlugins(app)
app.mount('#app')