web/frpc: support more info (#3334)

This commit is contained in:
fatedier
2023-02-26 02:54:53 +08:00
committed by GitHub
parent 871511ba52
commit 8c6303c1e5
20 changed files with 277 additions and 340 deletions

View File

@@ -1,21 +1,21 @@
import { createRouter, createWebHashHistory } from "vue-router";
import Overview from "../components/Overview.vue";
import ClientConfigure from "../components/ClientConfigure.vue";
import { createRouter, createWebHashHistory } from 'vue-router'
import Overview from '../components/Overview.vue'
import ClientConfigure from '../components/ClientConfigure.vue'
const router = createRouter({
history: createWebHashHistory(),
routes: [
{
path: "/",
name: "Overview",
path: '/',
name: 'Overview',
component: Overview,
},
{
path: "/configure",
name: "ClientConfigure",
path: '/configure',
name: 'ClientConfigure',
component: ClientConfigure,
},
],
});
})
export default router;
export default router