mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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 { 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' },
|
||||||
|
@ -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>
|
||||||
|
`;
|
||||||
|
@ -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: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user