mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Rate): convert count type (#9307)
* fix(rate): convert count type * test(Rate): add count string prop case
This commit is contained in:
parent
cc87259790
commit
d0914f34ad
@ -87,7 +87,7 @@ export default defineComponent({
|
|||||||
props.readonly || props.disabled || !props.touchable;
|
props.readonly || props.disabled || !props.touchable;
|
||||||
|
|
||||||
const list = computed<RateListItem[]>(() =>
|
const list = computed<RateListItem[]>(() =>
|
||||||
Array(props.count)
|
Array(+props.count)
|
||||||
.fill('')
|
.fill('')
|
||||||
.map((_, i) =>
|
.map((_, i) =>
|
||||||
getRateStatus(
|
getRateStatus(
|
||||||
|
@ -127,3 +127,15 @@ test('should get decimal when using allow-half and readonly prop', () => {
|
|||||||
const halfIcon = wrapper.find('.van-rate__icon--half');
|
const halfIcon = wrapper.find('.van-rate__icon--half');
|
||||||
expect(halfIcon.style.width).toEqual('0.3em');
|
expect(halfIcon.style.width).toEqual('0.3em');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should render correct count when using string prop', () => {
|
||||||
|
const wrapper = mount(Rate, {
|
||||||
|
props: {
|
||||||
|
count: '4',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const icons = wrapper.findAll('.van-rate__item');
|
||||||
|
|
||||||
|
expect(icons).toHaveLength(4);
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user