forked from p96170835/amis
52 lines
1.4 KiB
Markdown
Executable File
52 lines
1.4 KiB
Markdown
Executable File
---
|
|
title: Link 链接
|
|
description:
|
|
type: 0
|
|
group: ⚙ 组件
|
|
menuName: Link
|
|
icon:
|
|
order: 55
|
|
---
|
|
## 基本用法
|
|
|
|
```schema:height="200"
|
|
{
|
|
"type": "page",
|
|
"body": {
|
|
"type": "link",
|
|
"href": "https://www.baidu.com",
|
|
"body": "百度一下,你就知道"
|
|
}
|
|
}
|
|
```
|
|
|
|
## 新标签页打开
|
|
|
|
```schema:height="200"
|
|
{
|
|
"type": "page",
|
|
"body": {
|
|
"type": "link",
|
|
"href": "https://www.baidu.com",
|
|
"body": "百度一下,你就知道",
|
|
"blank": true
|
|
}
|
|
}
|
|
```
|
|
|
|
## 属性表
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
| ---------- | --------- | ------ | ------------------------------------------------------------------------------------ |
|
|
| type | `string` | | 如果在 Table、Card 和 List 中,为`"link"`;在 Form 中用作静态展示,为`"static-link"` |
|
|
| body | `string` | | 标签内文本 |
|
|
| href | `string` | | 链接地址 |
|
|
| blank | `boolean` | | 是否在新标签页打开 |
|
|
| htmlTarget | `string` | | a标签的target |
|
|
|
|
|
|
|
|
|
|
|
|
|