amis2/docs/zh-CN/components/tpl.md

60 lines
1.2 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: Tpl 模板
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: ⚙ 组件
menuName: Tpl
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 70
---
2020-07-29 16:20:21 +08:00
输出 [模板](../../docs/concepts/template) 的常用组件
2020-07-28 10:03:53 +08:00
## 基本用法
```schema
2020-07-28 10:03:53 +08:00
{
"data": {
"text": "World!"
},
"type": "page",
"body": {
"type": "tpl",
"tpl": "Hello ${text}"
}
}
```
更多模板相关配置请看[模板文档](../../docs/concepts/template)
2020-07-28 10:03:53 +08:00
## 快速编辑
通过 `quickEdit` 开启快速编辑功能,比如
```schema: scope="body"
{
"type": "form",
"body": [
{
"name": "static",
"type": "static",
"label": "静态展示",
"value": "123",
"quickEdit": {
"type": "number"
}
}
]
}
```
其他配置项参考 [快速编辑](crud#快速编辑)
2020-07-28 10:03:53 +08:00
## 属性表
| 属性名 | 类型 | 默认值 | 说明 |
| --------- | ------------------------------------ | ------- | --------------- |
| type | `string` | `"tpl"` | 指定为 Tpl 组件 |
| className | `string` | | 外层 Dom 的类名 |
| tpl | [模板](../../docs/concepts/template) | | 配置模板 |