lanyun-input-dialog
介绍
输入对话框,常用于输入单个内容。
使用方法
import "../../components/lanyun-input-dialog/lanyun-input-dialog.stml";
例子
<lanyun-input-dialog
@confirm="handleConfirm"
@cancel="handleCancel"
:show="show"
:show-mask="true"
value="username"
placeholder="请输入用户名"
title="用户名"
confirm-name="提交"
cancel-name="取消"
/>
props 属性
参数 |
说明 |
类型 |
默认值 |
show |
是否显示提示框, 选填 |
boolean |
false |
show-mask |
是否显示提示框, 选填 |
boolean |
true |
title |
标题, 选填 |
string |
- |
value |
输入框的value, 选填 |
string |
- |
placeholder |
输入框的placeholder, 选填 |
string |
请输入内容 |
confirm-name |
确认按钮名称, 选填 |
string |
提交 |
cancel-name |
取消按钮名称, 选填 |
string |
取消 |
events 事件
事件名 |
说明 |
回调参数 |
confirm |
当点击确认按钮时触发 |
value : 输入框的值 |
cancel |
当点击取消按钮时触发 |
- |