You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
242 B

7 months ago
  1. import './assets/main.css'
  2. import { createApp } from 'vue'
  3. import { createPinia } from 'pinia'
  4. import App from './App.vue'
  5. import router from './router'
  6. const app = createApp(App)
  7. app.use(createPinia())
  8. app.use(router)
  9. app.mount('#app')