shotgun/site/src/main.ts

21 lines
299 B
TypeScript
Raw Normal View History

2024-01-27 21:36:41 -06:00
/**
* 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'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')