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

41 lines
643 B

  1. <template>
  2. <uv-rate
  3. v-model="rate"
  4. size="48rpx"
  5. gutter="16rpx"
  6. activeIcon="star-fill"
  7. inactiveIcon="star-fill"
  8. activeColor="#F7BA1E"
  9. inactiveColor="#E3E3E3"
  10. :allowHalf="true"
  11. :minCount="0.5"
  12. :readonly="readonly"
  13. ></uv-rate>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. value: {
  19. default: null
  20. },
  21. readonly: {
  22. type: Boolean,
  23. default: false
  24. },
  25. },
  26. computed: {
  27. rate: {
  28. set(val) {
  29. this.$emit('input', val)
  30. },
  31. get() {
  32. return this.value
  33. }
  34. },
  35. },
  36. }
  37. </script>
  38. <style>
  39. </style>