cc物流系统V5

This commit is contained in:
HKXluo
2025-10-24 02:43:59 +08:00
parent b6dea93a18
commit c38a55330c
15 changed files with 4804 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { createRouter, createWebHistory } from 'vue-router';
import BlueprintEditorView from '@/views/BlueprintEditorView.vue';
const routes = [
{
path: '/blueprint-editor',
name: 'BlueprintEditor',
component: BlueprintEditorView
},
// 其他路由...
];
const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
routes
});
export default router;