2023-05-23 08:19:09 +02:00
|
|
|
/**
|
|
|
|
* main.ts
|
|
|
|
*
|
|
|
|
* Bootstraps Vuetify and other plugins then mounts the App`
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Components
|
2023-05-23 10:05:53 +02:00
|
|
|
import App from './App.vue';
|
2023-05-23 08:19:09 +02:00
|
|
|
|
|
|
|
// Composables
|
2023-05-23 10:05:53 +02:00
|
|
|
import { createApp } from 'vue';
|
2023-05-23 08:19:09 +02:00
|
|
|
|
|
|
|
// Plugins
|
2023-05-23 10:05:53 +02:00
|
|
|
import { registerPlugins } from '@/plugins';
|
2023-05-23 08:19:09 +02:00
|
|
|
|
2023-05-23 10:05:53 +02:00
|
|
|
const app = createApp(App);
|
2023-05-23 08:19:09 +02:00
|
|
|
|
2023-05-23 10:05:53 +02:00
|
|
|
registerPlugins(app);
|
2023-05-23 08:19:09 +02:00
|
|
|
|
2023-05-23 10:05:53 +02:00
|
|
|
app.mount('#app');
|