24 lines
341 B
TypeScript
24 lines
341 B
TypeScript
/**
|
|
* main.ts
|
|
*
|
|
* 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'
|
|
|
|
// Styles
|
|
import '@/assets/styles/base.scss'
|
|
|
|
const app = createApp(App)
|
|
|
|
registerPlugins(app)
|
|
|
|
app.mount('#app')
|