mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-23 09:52:57 +08:00
feat(Field): fix render error when value is null or undefined (#6419)
This commit is contained in:
parent
754e8994a0
commit
ba04660ed3
@ -491,7 +491,7 @@ export default createComponent({
|
|||||||
|
|
||||||
genWordLimit() {
|
genWordLimit() {
|
||||||
if (this.showWordLimit && this.maxlength) {
|
if (this.showWordLimit && this.maxlength) {
|
||||||
const count = this.value.length;
|
const count = (this.value || '').length;
|
||||||
const full = count >= this.maxlength;
|
const full = count >= this.maxlength;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -79,6 +79,24 @@ exports[`reach max word-limit 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`reach max word-limit null 1`] = `
|
||||||
|
<div class="van-cell van-field">
|
||||||
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
|
<div class="van-field__body"><input type="text" class="van-field__control"></div>
|
||||||
|
<div class="van-field__word-limit"><span class="van-field__word-num">0</span>/3</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`reach max word-limit undefined 1`] = `
|
||||||
|
<div class="van-cell van-field">
|
||||||
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
|
<div class="van-field__body"><input type="text" class="van-field__control"></div>
|
||||||
|
<div class="van-field__word-limit"><span class="van-field__word-num">0</span>/3</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`render extra slot 1`] = `
|
exports[`render extra slot 1`] = `
|
||||||
<div class="van-cell van-field">
|
<div class="van-cell van-field">
|
||||||
<div class="van-cell__value van-cell__value--alone van-field__value">
|
<div class="van-cell__value van-cell__value--alone van-field__value">
|
||||||
|
@ -310,6 +310,28 @@ test('reach max word-limit', () => {
|
|||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('reach max word-limit undefined', () => {
|
||||||
|
const wrapper = mount(Field, {
|
||||||
|
propsData: {
|
||||||
|
value: undefined,
|
||||||
|
maxlength: 3,
|
||||||
|
showWordLimit: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(wrapper).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('reach max word-limit null', () => {
|
||||||
|
const wrapper = mount(Field, {
|
||||||
|
propsData: {
|
||||||
|
value: null,
|
||||||
|
maxlength: 3,
|
||||||
|
showWordLimit: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(wrapper).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
test('name prop', () => {
|
test('name prop', () => {
|
||||||
const wrapper = mount(Field, {
|
const wrapper = mount(Field, {
|
||||||
propsData: {
|
propsData: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user