import { createApp } from 'vue' import { createPinia } from 'pinia' import App from './App.vue' import router from './router' import "bootstrap" import "bootstrap/dist/css/bootstrap.css" import "bootstrap-icons/font/bootstrap-icons.css" createApp(App) .use(router) .use(createPinia()) .mount('#app')