mirror of
https://github.com/maciejpedzich/racemash.git
synced 2024-11-10 00:53:03 +01:00
21 lines
305 B
TypeScript
21 lines
305 B
TypeScript
/**
|
|
* main.ts
|
|
*
|
|
* Bootstraps Vuetify and other plugins then mounts the App`
|
|
*/
|
|
|
|
// Components
|
|
import App from './App.vue';
|
|
|
|
// Composables
|
|
import { createApp } from 'vue';
|
|
|
|
// Plugins
|
|
import { registerPlugins } from '@/plugins';
|
|
|
|
const app = createApp(App);
|
|
|
|
registerPlugins(app);
|
|
|
|
app.mount('#app');
|