编写文档

除了 vitepress 提供的 markdown 能力,本项目补充了 Demo 演示能力

demo 可用的 Props

名称类型是否必传默认值描述
srcstringyes-demo 文件
titlestringno"基本使用"标题
descstringno-描述,支持 markdown
compactbooleanno-移除内边距
debug(todo)booleanno-仅在 dev 模式下运行
iframebooleannosrc.endsWith('.html')以 iframe 模式运行
iframeHeightstringno(自动计算)iframe['height']
filestringno-类似于 src,额外显示的代码,可以重复传值,例如:
file="./a.ts" file="./b.ts"

方式一

<demo src="./demo.vue" />
1

<demo
  src="./demo.vue"
  file="../index.md"
  title="我是一个可选的标题"
  compact
  desc="我是一段可选的描述,我可以用 `Markdown` 编写。"
/>
1
2
3
4
5
6
7

<demo src="./demo.vue" title="iframe 模式" iframe iframeHeight="50" />
1

方式二

::: demo src="./demo.vue" title="Demo 标题"

我是一段描述,我可以用 `Markdown` 编写。

我是真正的 `Markdown` ,有 `IDE` 提示。

:::
1
2
3
4
5
6
7