鸿宇研学生前端代码
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.

27 lines
428 B

  1. <template>
  2. <uv-rate
  3. :value="value"
  4. @input="$emit('input', $event)"
  5. @change="$emit('input', $event)"
  6. activeIcon="star-fill"
  7. inactiveIcon="star-fill"
  8. size="48rpx"
  9. gutter="16rpx"
  10. activeColor="#F7BA1E"
  11. :allowHalf="true"
  12. :minCount="0.5"
  13. ></uv-rate>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. value: {
  19. default: null
  20. },
  21. },
  22. }
  23. </script>
  24. <style>
  25. </style>