-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# React 生态 | ||
|
||
<script setup lang="ts"> | ||
import Menu from '../components/menu.vue' | ||
import { REACT_DATA } from './data.js' | ||
</script> | ||
|
||
## React文档 | ||
|
||
<Menu :list='REACT_DATA' /> |
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,10 @@ | ||
# 开放数据 | ||
|
||
<script setup lang="ts"> | ||
import Menu from '../components/menu.vue' | ||
import { OPEN_DATA } from './data.js' | ||
</script> | ||
|
||
## 工具 | ||
|
||
<Menu :list='OPEN_DATA' /> |
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,8 @@ | ||
export const OPEN_DATA = [ | ||
{ | ||
icon: 'https://sfz.fatcarter.cn/images/favicon.ico', | ||
title: '身份证生成', | ||
desc: '随机身份证号码生成', | ||
link: 'https://sfz.fatcarter.cn/index.shtml', | ||
}, | ||
]; |