-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ce9394
commit 8fb7586
Showing
12 changed files
with
261 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
import { IconImage, IconIntro } from "@douyinfe/semi-icons-lab"; | ||
import ImageCompressSvg from "@/assets/img/imageCompress.svg"; | ||
import JsonSvg from "@/assets/img/json.svg"; | ||
import JsonDiffSvg from "@/assets/img/jsonDiff.svg"; | ||
import imgScanSvg from "@/assets/img/imgScan.svg"; | ||
import imgFormatConversion from "@/assets/img/imgFormatConversion.svg"; | ||
|
||
export const NAV_MAP = [ | ||
{ | ||
itemKey: "/home", | ||
text: "首页", | ||
icon: <IconIntro />, | ||
}, | ||
{ | ||
itemKey: "/jsonFormatting", | ||
text: "JSON格式化", | ||
icon: <img src={JsonSvg} />, | ||
des:'将JSON格式化为可读性更好的格式' | ||
}, | ||
{ | ||
itemKey: "/jsonDiff", | ||
text: "JSON对比", | ||
icon: <img src={JsonDiffSvg} />, | ||
des:'比较两个JSON对象,并展示差异' | ||
}, | ||
{ | ||
itemKey: "/imageSlicing", | ||
text: "图片分割", | ||
icon: <IconImage />, | ||
des:'将图片切割成多张小图片' | ||
}, | ||
{ | ||
itemKey: "/imageCompress", | ||
text: "图片压缩", | ||
icon: <img src={ImageCompressSvg} />, | ||
des:'压缩图片大小' | ||
}, | ||
{ | ||
itemKey: "/imgScan", | ||
text: "图片识别文字", | ||
icon: <img src={imgScanSvg} />, | ||
des:'识别图片中的文字' | ||
}, | ||
{ | ||
itemKey: "/imgFormatConversion", | ||
text: "图片格式转换", | ||
icon: <img src={imgFormatConversion} />, | ||
des:'图片格式互相转换' | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.