diff --git a/packages/vant/src/search/README.md b/packages/vant/src/search/README.md index 9683b5b81..8a5cf6a1e 100644 --- a/packages/vant/src/search/README.md +++ b/packages/vant/src/search/README.md @@ -122,7 +122,7 @@ Use `action` slot to custom right button, `cancel` event will no longer be Emitt | label | Left side label | _string_ | - | | name `v3.2.3` | As the identifier when submitting the form | _string_ | - | | shape | Shape of field, can be set to `round` | _string_ | `square` | -| id `v3.2.2` | Input id, the for attribute of the label also will be set | _string_ | - | +| id `v3.2.2` | Input id, the for attribute of the label also will be set | _string_ | `van-search-n-input` | | background | Background color of field | _string_ | `#f2f2f2` | | maxlength | Max length of value | _number \| string_ | - | | placeholder | Placeholder | _string_ | - | diff --git a/packages/vant/src/search/README.zh-CN.md b/packages/vant/src/search/README.zh-CN.md index 824425b4b..18cdd650a 100644 --- a/packages/vant/src/search/README.zh-CN.md +++ b/packages/vant/src/search/README.zh-CN.md @@ -134,7 +134,7 @@ export default { | label | 搜索框左侧文本 | _string_ | - | | name `v3.2.3` | 名称,作为提交表单时的标识符 | _string_ | - | | shape | 搜索框形状,可选值为 `round` | _string_ | `square` | -| id `v3.2.2` | 搜索框 id,同时会设置 label 的 for 属性 | _string_ | - | +| id `v3.2.2` | 搜索框 id,同时会设置 label 的 for 属性 | _string_ | `van-search-n-input` | | background | 搜索框外部背景色 | _string_ | `#f2f2f2` | | maxlength | 输入的最大字符数 | _number \| string_ | - | | placeholder | 占位提示文字 | _string_ | - | diff --git a/packages/vant/src/search/Search.tsx b/packages/vant/src/search/Search.tsx index 8161cb337..a9386e724 100644 --- a/packages/vant/src/search/Search.tsx +++ b/packages/vant/src/search/Search.tsx @@ -12,6 +12,7 @@ import { import { fieldSharedProps } from '../field/Field'; // Composables +import { useId } from '../composables/use-id'; import { useExpose } from '../composables/use-expose'; // Components @@ -42,6 +43,7 @@ export default defineComponent({ emits: ['search', 'cancel', 'update:modelValue'], setup(props, { emit, slots, attrs }) { + const id = useId(); const filedRef = ref(); const onCancel = () => { @@ -59,10 +61,12 @@ export default defineComponent({ } }; + const getInputId = () => props.id || `${id}-input`; + const renderLabel = () => { if (slots.label || props.label) { return ( -