mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-05-23 08:53:36 +00:00
- 升级 vitepress 到 ^2.0.0-alpha.17
- vite.optimizeDeps.rolldownOptions.transform.define 迁移至 vite.define 以适配 v2 API
- 同步升级 vitest/rolldown/vue/vite 等周边依赖
- 文档中类型链接统一改为 <<< 片段引用源码 region,避免 commit hash 链接失效
- packages/{core,editor,form-schema,schema,stage} 相关类型加 // #region 锚点
- 移除已废弃的 docs/guide/advanced/tmagic-ui.md 及侧栏入口
Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
1.0 KiB
Markdown
53 lines
1.0 KiB
Markdown
# Link 链接
|
||
|
||
用于显示,不可编辑
|
||
|
||
## 基础用法
|
||
|
||
<demo-block type="form" :config="[{
|
||
type: 'link',
|
||
name: 'link',
|
||
text: '链接',
|
||
href: 'https://tencent.github.io/tmagic-editor/playground/index.html#/'
|
||
}]">
|
||
<template #source>
|
||
<p>
|
||
通过配置 href,点击链接可跳转到指定地址。
|
||
</p>
|
||
</template>
|
||
</demo-block>
|
||
|
||
## 打开表单
|
||
|
||
<demo-block type="form" :config="[{
|
||
type: 'link',
|
||
name: 'link',
|
||
text: '链接',
|
||
form: [{
|
||
name: 'text',
|
||
text: 'input'
|
||
}]
|
||
}]">
|
||
<template #source>
|
||
<p>
|
||
通过配置 form,点击链接打开一个弹窗表单进行编辑。
|
||
</p>
|
||
</template>
|
||
</demo-block>
|
||
|
||
## Input Attributes
|
||
|
||
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
||
| ---- | -------- | ------ | ------ | ------ |
|
||
| name | 绑定值 | string | — | — |
|
||
| text | 表单标签 | string | — | — |
|
||
|
||
## 配置类型
|
||
|
||
::: details 查看 LinkConfig 配置类型定义
|
||
<<< @/../packages/form-schema/src/base.ts#LinkConfig{ts}
|
||
|
||
<<< @/../packages/form-schema/src/base.ts#FormItem{ts}
|
||
|
||
:::
|