# Alert 提示
表单的提示
# Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
item | 提示配置 | object | {"type": "alert" , "label": "提示" , "options": {"type": "success" , "description": "这是success的提示" , "showIcon": true , "banner": true , "hidden": false , "closable": true} , "key": "alert_1619342193554"} , `` | {} |
# Alert 使用方法
<uct-form-item :config="config" :item="item"></uct-form-item>
export default {
data() {
return {
item:{
"type": "alert",
"label": "提示",
"options": {
"type": "success",
"description": "这是success提示",
"showIcon": true,
"banner": true,
"hidden": false,
"closable": true
},
"key": "alert_1619342193554"
},
config:{
"layout": "horizontal",
"labelCol": {
"span": 4
},
"wrapperCol": {
"span": 20
},
"hideRequiredMark": false,
"customStyle": ""
}
},
};