new Files

This commit is contained in:
2025-04-22 13:24:34 +08:00
commit c9da342e04
27 changed files with 5899 additions and 0 deletions

13
front/src/router/index.js Normal file
View File

@ -0,0 +1,13 @@
import { createMemoryHistory, createRouter } from 'vue-router'
import menjizhenItemView from "@/views/zl-station/menjizhenItemView.vue"
const routes = [
{ path: '/menjizhenItemView', component: menjizhenItemView },
]
export const router = createRouter({
history: createMemoryHistory(),
routes,
})