This commit is contained in:
Baobhan Sith
2025-04-14 22:51:05 +08:00
parent 286492fc63
commit a974b8b1d9
49 changed files with 13954 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { createApp } from 'vue';
import { createPinia } from 'pinia'; // 引入 Pinia
import App from './App.vue';
import router from './router'; // 引入我们创建的 router
import i18n from './i18n'; // 引入 i18n 实例
import './style.css';
const app = createApp(App);
app.use(createPinia()); // 使用 Pinia
app.use(router); // 使用 Router
app.use(i18n); // 使用 i18n
app.mount('#app');