Skip to content
Snippets Groups Projects
main.ts 381 B
import { createApp } from 'vue'
import './style.css'
import { createPinia } from 'pinia'
import { createWebHistory, createRouter } from 'vue-router'
import App from './App.vue'
import { routes } from './utils/router'

const pinia = createPinia()
const router = createRouter({
  routes: routes,
  history: createWebHistory(),
})

createApp(App).use(pinia).use(router).mount('#app')