diff --git a/src/field/test/index.spec.js b/src/field/test/index.spec.js index 28e015067..7aae711c3 100644 --- a/src/field/test/index.spec.js +++ b/src/field/test/index.spec.js @@ -456,7 +456,7 @@ test('should render autofocus attribute to input when using autofocus prop', asy expect(input.element.hasAttributes('autofocus')).toBeTruthy(); }); -test('should render id props correctly', async () => { +test('should render id prop correctly', async () => { const wrapper = mount(Field, { props: { label: 'Label', diff --git a/src/search/README.md b/src/search/README.md index a827b9789..24c5c016c 100644 --- a/src/search/README.md +++ b/src/search/README.md @@ -120,6 +120,7 @@ Use `action` slot to custom right button, `cancel` event will no longer be Emitt | --- | --- | --- | --- | | label | Left side label | _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_ | - | | background | Background color of field | _string_ | `#f2f2f2` | | maxlength | Max length of value | _number \| string_ | - | | placeholder | Placeholder | _string_ | - | diff --git a/src/search/README.zh-CN.md b/src/search/README.zh-CN.md index 05dcc6dde..c90eadf85 100644 --- a/src/search/README.zh-CN.md +++ b/src/search/README.zh-CN.md @@ -132,6 +132,7 @@ export default { | --- | --- | --- | --- | | label | 搜索框左侧文本 | _string_ | - | | shape | 搜索框形状,可选值为 `round` | _string_ | `square` | +| id `v3.2.2` | 搜索框 id,同时会设置 label 的 for 属性 | _string_ | - | | background | 搜索框外部背景色 | _string_ | `#f2f2f2` | | maxlength | 输入的最大字符数 | _number \| string_ | - | | placeholder | 占位提示文字 | _string_ | - | diff --git a/src/search/Search.tsx b/src/search/Search.tsx index d150d3f31..3c6085694 100644 --- a/src/search/Search.tsx +++ b/src/search/Search.tsx @@ -67,9 +67,9 @@ export default defineComponent({ const renderLabel = () => { if (slots.label || props.label) { return ( -