12345678910111213141516171819202122232425262728 |
- /**
- * main.js
- *
- * Bootstraps Vuetify and other plugins then mounts the App`
- */
- // Plugins
- import { registerPlugins } from '@/plugins'
- import '@/styles/index.scss'
- import App from './App.vue'
- import { createApp } from 'vue'
- import { createPinia } from 'pinia'
- import router from './router'
- const pinia = createPinia()
- const app = createApp(App)
- app.use(pinia)
- app.use(router)
- registerPlugins(app)
- app.mount('#app')
|