鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
428 B

<template>
<uv-rate
:value="value"
@input="$emit('input', $event)"
@change="$emit('input', $event)"
activeIcon="star-fill"
inactiveIcon="star-fill"
size="48rpx"
gutter="16rpx"
activeColor="#F7BA1E"
:allowHalf="true"
:minCount="0.5"
></uv-rate>
</template>
<script>
export default {
props: {
value: {
default: null
},
},
}
</script>
<style>
</style>