Skip to content

Commit

Permalink
🔧 chore router
Browse files Browse the repository at this point in the history
  • Loading branch information
virzs committed Dec 19, 2021
1 parent 1503ed4 commit cd3c1d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/config/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: Vir
* @Date: 2021-09-11 15:26:27
* @Last Modified by: Vir
* @Last Modified time: 2021-12-15 14:28:04
* @Last Modified time: 2021-12-17 17:03:29
*/

import { lazy } from 'react';
Expand All @@ -14,6 +14,7 @@ import {
SettingsBackupRestore,
SupervisorAccount,
Update,
Api,
} from '@material-ui/icons';
import React from 'react';
import Auth from '@views/setting/auth';
Expand All @@ -33,6 +34,7 @@ import Lab from '@/views/setting/lab';
import Backup from '@/views/setting/data/backup';
import Features from '@/views/setting/features';
import Navigation from '@/views/setting/navigation';
import OtherApis from '@/views/setting/otherApis';

/**
* 关于 component 额外说明
Expand Down Expand Up @@ -142,6 +144,12 @@ const routers: Router[] = [
path: '/setting/lab/navigation',
component: Navigation,
},
{
title: '第三方API',
icon: <Api />,
path: '/setting/lab/otherApis',
component: OtherApis,
},
// {
// title: '功能',
// icon: <FeaturedPlayList />,
Expand Down

0 comments on commit cd3c1d2

Please sign in to comment.