This commit is contained in:
2025-09-25 14:58:50 +08:00
commit 2ea3147268
22 changed files with 8126 additions and 0 deletions

11
schoolNewsWeb/src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createApp } from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import store from "./store";
const app = createApp(App);
app.use(store);
app.use(router);
app.mount("#app");