1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-06 03:58:05 +08:00
landluck d14ac6027a
feat(field): add prop extra-event-params support ()
* feat(field): add prop extra support

* feat(field): adjust extra params to extra-to-params
2023-01-11 16:36:30 +08:00

9 lines
228 B
TypeScript

export interface InputDetails {
/** 输入框内容 */
value: string;
/** 光标位置 */
cursor?: number;
/** keyCode 为键值 (目前工具还不支持返回keyCode参数) `2.1.0` 起支持 */
keyCode?: number;
}