-
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
1 parent
97c861d
commit 9e066f6
Showing
21 changed files
with
1,045 additions
and
2,660 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"DavidAnson.vscode-markdownlint", | ||
"yzhang.markdown-all-in-one", | ||
"vstirbu.vscode-mermaid-preview", | ||
"bpruitt-goddard.mermaid-markdown-syntax-highlighting", | ||
"bierner.markdown-mermaid" | ||
] | ||
"recommendations": [ | ||
"yzhang.markdown-all-in-one", | ||
"vstirbu.vscode-mermaid-preview", | ||
"bpruitt-goddard.mermaid-markdown-syntax-highlighting", | ||
"bierner.markdown-mermaid", | ||
"DavidAnson.vscode-markdownlint" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,40 +1,36 @@ | ||
# VuePress Frontend Notes | 前端笔记 | ||
# VuePress Frontend Notes | ||
|
||
![actions status](https://img.shields.io/github/actions/workflow/status/Sun-ZhenXing/vuepress-frontend-notes/deploy-docs.yml?branch=main) | ||
|
||
🚀 [Online Reading | 在线阅读](https://blog.alexsun.top/vuepress-frontend-notes/). | ||
🌐 [中文文档](./README.zh.md) | 🚀 [Online Reading (Chinese)](https://blog.alexsun.top/vuepress-frontend-notes/) | ||
|
||
![project diagram](./diagram.svg) | ||
## 📖 Introduction | ||
|
||
## 📖 Introduction | 介绍 | ||
Frontend notes, including various frontend learning notes, as well as some practices of frontend projects. | ||
|
||
Frontend notes, including various frontend learning notes, and some frontend project practices. | 前端笔记,包含各种前端学习笔记,以及一些前端项目的实践。 | ||
It is recommended to install the [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint) plugin to format the MarkDown file. | ||
|
||
It is recommended to install the **markdownlint** plugin to format the MarkDown file. | 建议安装插件 **markdownlint** 来格式化 MarkDown 文件。 | ||
## 🛠️ Build Docs | ||
|
||
This project uses the project structure diagram generated by [Repo Visualization](https://githubnext.com/projects/repo-visualization/). | 本项目使用 [Repo Visualization](https://githubnext.com/projects/repo-visualization/) 生成的项目结构图。 | ||
|
||
## 🛠️ Build Docs | 构建文档 | ||
|
||
Build with `pnpm`, the content will be generated in `docs/.vuepress/dist`. | 使用 `pnpm` 构建, 内容将生成在 `docs/.vuepress/dist` 下: | ||
Build with `pnpm`, the content will be generated in `docs/.vuepress/dist`: | ||
|
||
```bash | ||
pnpm i | ||
pnpm build | ||
``` | ||
|
||
Build with Docker | 使用 Docker 构建: | ||
Build with Docker: | ||
|
||
```bash | ||
docker build -t vuepress-frontend-notes . | ||
docker run -itd -p 80:80 vuepress-frontend-notes | ||
``` | ||
|
||
Now you can visit <http://localhost> to see your docs. | 现在你可以访问 <http://localhost> 来查看你的文档。 | ||
Now you can visit <http://localhost> to see your docs. | ||
|
||
## 📜 License | 开源协议 | ||
## 📜 License | ||
|
||
- All files except `/docs/*` are licensed under [MIT License](https://mit-license.org/) | 除了文档外的其他文件(除了 `/docs/` 文件夹),使用 [MIT 协议](https://mit-license.org/) 开源 | ||
- `/docs/*` are licensed under [CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) | 文档(即 `/docs/` 下的文件)使用 [CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 共享 | ||
- All files except `/docs/*` are licensed under [MIT License](https://mit-license.org/) | ||
- `/docs/*` are licensed under [CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) | ||
|
||
For more details, please read [this series of documents license](https://github.com/Sun-ZhenXing/Sun-ZhenXing.github.io#%E5%BC%80%E6%BA%90%E5%8D%8F%E8%AE%AE). | 详情请阅读 [此系列文档开源协议](https://github.com/Sun-ZhenXing/Sun-ZhenXing.github.io#%E5%BC%80%E6%BA%90%E5%8D%8F%E8%AE%AE)。 | ||
For more details, please read [this series of documents license](https://github.com/Sun-ZhenXing/Sun-ZhenXing.github.io#%E5%BC%80%E6%BA%90%E5%8D%8F%E8%AE%AE). |
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,36 @@ | ||
# VuePress 前端笔记 | ||
|
||
![actions status](https://img.shields.io/github/actions/workflow/status/Sun-ZhenXing/vuepress-frontend-notes/deploy-docs.yml?branch=main) | ||
|
||
🚀 [在线阅读(中文)](https://blog.alexsun.top/vuepress-opencv-notes/) | ||
|
||
## 📖 介绍 | ||
|
||
前端笔记,包含各种前端学习笔记,以及一些前端项目的实践。 | ||
|
||
建议安装插件 [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint) 来格式化 MarkDown 文件。 | ||
|
||
## 🛠️ 构建文档 | ||
|
||
使用 `pnpm` 构建, 内容将生成在 `docs/.vuepress/dist` 下: | ||
|
||
```bash | ||
pnpm i | ||
pnpm build | ||
``` | ||
|
||
使用 Docker 构建: | ||
|
||
```bash | ||
docker build -t vuepress-frontend-notes . | ||
docker run -itd -p 80:80 vuepress-frontend-notes | ||
``` | ||
|
||
现在你可以访问 <http://localhost> 来查看你的文档。 | ||
|
||
## 📜 License | 开源协议 | ||
|
||
- 除了文档外的其他文件(除了 `/docs/` 文件夹),使用 [MIT 协议](https://mit-license.org/) 开源 | ||
- 文档(即 `/docs/` 下的文件)使用 [CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 共享 | ||
|
||
详情请阅读 [此系列文档开源协议](https://github.com/Sun-ZhenXing/Sun-ZhenXing.github.io#%E5%BC%80%E6%BA%90%E5%8D%8F%E8%AE%AE)。 |
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
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
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,3 @@ | ||
# 图标库 | ||
|
||
[[TOC]] |
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,3 @@ | ||
# Nuxt 依赖配置 | ||
|
||
<AutoCatalog /> |
Oops, something went wrong.