// @ts-nocheck
import { createApp } from 'vue'
import App from './App.vue'
import router from './router.ts'
import { createPinia } from 'pinia';
import '@/assets/css/common.css'
import './browser-adap';
const app = createApp(App);
// 创建 Pinia 存储库
const pinia = createPinia();
// 将 Pinia 插件添加到 Vue 应用中
app.use(pinia);
// 注册路由
app.use(router);

app.mount("#app");