Files
pronature-platform/src/main.js
T
2026-02-05 13:50:43 +02:00

24 lines
388 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'
// Global Mixins
import GlobalMixin from '@/mixins/GlobalMixin';
const app = createApp(App)
registerPlugins(app)
app.mixin(GlobalMixin);
app.mount('#app')