mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
3.2 KiB
3.2 KiB
Input 输入框
通过鼠标或键盘输入字符
基础用法
<template #source>
Input输入框的type为'text', 是type的默认值,所以可以不配置
禁用状态
<template #source>
通过 disabled 属性指定是否禁用 input 组件
复合型输入框
后置内容
<template #source>
可以通过配置append来增加一个后置内容。
<template #source>
可以通过配置append来增加一个后置按钮。
过滤内容
<template #source>
设置filter为'number',可以将值转换成数值,也可以配置一个函数来自由转换。
去掉首尾空格
<template #source>
设置trim为true',可以去掉首尾空格。
显示详情
<template #source>
在开启多选模式后,默认情况下会展示所有已选中的选项的Tag
Input Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
name | 绑定值 | string | — | — |
placeholder | 输入框占位文本 | string | — | — |
text | 表单标签 | string | — | — |
disabled | 是否禁用 | boolean / FilterFunction | — | false |
tooltip | 输入时显示内容 | boolean | — | false |
placeholder | 输入框占位文本 | string | — | — |
trim | 是否去掉首尾空格 | boolean | — | false |
filter | 过滤值 | string / Function | number | - |
onChange | 值变化时触发的函数 | OnChangeHandler | — | - |
append | 后置内容 | string / Object | — | - |
append Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
type | 内容类型 | string | button | — |
text | 文本内容 | string | — | — |
handler | 点击操作 | Function | — | - |