mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(NumberKeyboard): lose the number 0 key in some configs (#12972)
This commit is contained in:
parent
2a645cc1ba
commit
bd90b6d43b
@ -123,7 +123,9 @@ export default defineComponent({
|
||||
const { extraKey } = props;
|
||||
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(
|
||||
{ text: 0, wider: true },
|
||||
{ text: extraKeys[0], type: 'extra' },
|
||||
|
@ -61,3 +61,13 @@ exports[`should render title-left slot correctly 1`] = `
|
||||
</span>
|
||||
</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>
|
||||
`;
|
||||
|
@ -105,6 +105,16 @@ test('should render extra-key slot correctly', () => {
|
||||
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', () => {
|
||||
const wrapper = mount(NumberKeyboard, {
|
||||
slots: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user