mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 18:33:43 +08:00
40 lines
734 B
TypeScript
40 lines
734 B
TypeScript
import LogsPage from "./logs";
|
|
import ProxiesPage from "./proxies";
|
|
import ProfilesPage from "./profiles";
|
|
import SettingsPage from "./settings";
|
|
import ConnectionsPage from "./connections";
|
|
import RulesPage from "./rules";
|
|
|
|
export const routers = [
|
|
{
|
|
label: "Label-Proxies",
|
|
link: "/",
|
|
ele: ProxiesPage,
|
|
},
|
|
{
|
|
label: "Label-Profiles",
|
|
link: "/profile",
|
|
ele: ProfilesPage,
|
|
},
|
|
{
|
|
label: "Label-Connections",
|
|
link: "/connections",
|
|
ele: ConnectionsPage,
|
|
},
|
|
{
|
|
label: "Label-Rules",
|
|
link: "/rules",
|
|
ele: RulesPage,
|
|
},
|
|
{
|
|
label: "Label-Logs",
|
|
link: "/logs",
|
|
ele: LogsPage,
|
|
},
|
|
{
|
|
label: "Label-Settings",
|
|
link: "/settings",
|
|
ele: SettingsPage,
|
|
},
|
|
];
|