fix(NumberKeyboard): lose the number 0 key in some configs (#12972)

This commit is contained in:
Whbbit1999 2024-09-08 21:31:38 +08:00 committed by GitHub
parent 2a645cc1ba
commit bd90b6d43b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 1 deletions

View File

@ -123,7 +123,9 @@ export default defineComponent({
const { extraKey } = props; const { extraKey } = props;
const extraKeys = Array.isArray(extraKey) ? extraKey : [extraKey]; const extraKeys = Array.isArray(extraKey) ? extraKey : [extraKey];
if (extraKeys.length === 1) { if (extraKeys.length === 0) {
keys.push({ text: 0, wider: true });
} else if (extraKeys.length === 1) {
keys.push( keys.push(
{ text: 0, wider: true }, { text: 0, wider: true },
{ text: extraKeys[0], type: 'extra' }, { text: extraKeys[0], type: 'extra' },

View File

@ -61,3 +61,13 @@ exports[`should render title-left slot correctly 1`] = `
</span> </span>
</div> </div>
`; `;
exports[`should render zero key correctly when extra-key prop is an empty array 1`] = `
<div
role="button"
tabindex="0"
class="van-key"
>
0
</div>
`;

View File

@ -105,6 +105,16 @@ test('should render extra-key slot correctly', () => {
expect(wrapper.findAll('.van-key')[9].html()).toMatchSnapshot(); expect(wrapper.findAll('.van-key')[9].html()).toMatchSnapshot();
}); });
test('should render zero key correctly when extra-key prop is an empty array', () => {
const wrapper = mount(NumberKeyboard, {
props: {
theme: 'custom',
extraKey: [],
},
});
expect(wrapper.findAll('.van-key')[9].html()).toMatchSnapshot();
});
test('should render delete slot correctly', () => { test('should render delete slot correctly', () => {
const wrapper = mount(NumberKeyboard, { const wrapper = mount(NumberKeyboard, {
slots: { slots: {