fix(Rate): convert count type (#9307)

* fix(rate): convert count type

* test(Rate): add count string prop case
This commit is contained in:
Tmk 2021-08-22 19:39:26 +08:00 committed by GitHub
parent cc87259790
commit d0914f34ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -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(

View File

@ -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);
});