UNPKG

@zhangqingcq/vgce

Version:

Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite

20 lines (17 loc) 345 B
import { createRouter, createWebHistory } from 'vue-router' import EditorS from '@/views/EditorS.vue' const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: [ { path: '/', redirect: '/EditorS' }, { path: '/EditorS', name: 'EditorS', component: EditorS } ] }) export default router