-
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.
本次提交对项目的部署脚本和文档配置进行了重构和更新,包括: - 移除`deploy.sh`脚本,改用更现代的部署方法。 - 更新`.vitepress/config.mts`配置文件,添加自定义别名、Markdown 预览插件等设置。 - 修改主题配置,引入Ant Design容器组件。 - 添加示例代码和文档安装、使用说明。 - 重命名和更新文档文件,优化导航结构和内容展示。 这些更改旨在提升文档质量和项目部署的效率与灵活性。
- Loading branch information
Null
committed
Jul 28, 2024
1 parent
3823368
commit 2e8f613
Showing
7 changed files
with
78 additions
and
42 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
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,13 @@ | ||
<template> | ||
<div>{{ useBooleanState }}</div> | ||
|
||
<button @click="useBooleanToggle">toggle</button> | ||
<button @click="setTrue">setTrue</button> | ||
<button @click="setFalse">setFalse</button> | ||
</template> | ||
|
||
<script setup> | ||
import { useBoolean } from 'zhongjiayao_v3_hooks' | ||
const [useBooleanState, { toggle: useBooleanToggle, setTrue, setFalse }] = useBoolean() | ||
</script> | ||
|
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