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