demo6.vue 489 B

1234567891011121314151617181920
  1. <template>
  2. <m-row>
  3. <m-col>
  4. <m-rate v-model="value1" character="A"></m-rate>
  5. </m-col>
  6. <m-col style="margin-top:20px">
  7. <m-rate v-model="value2" character="好" allow-half></m-rate>
  8. </m-col>
  9. <m-col style="margin-top:20px">
  10. <m-rate v-model="value3" icon="smile-filling"></m-rate>
  11. </m-col>
  12. </m-row>
  13. </template>
  14. <script setup>
  15. import { computed, ref } from 'vue-demi';
  16. const value1 = ref(2);
  17. const value2 = ref(2);
  18. const value3 = ref(2);
  19. </script>