ant-design-vue/components/rate/demo/text.md

365 B

#### ๆ–‡ๆกˆๅฑ•็Žฐ ็ป™่ฏ„ๅˆ†็ป„ไปถๅŠ ไธŠๆ–‡ๆกˆๅฑ•็คบใ€‚ #### Show copywriting Add copywriting in rate components.
<template>
  <span>
    <a-rate v-model='value'/>
    <span class="ant-rate-text">{{value}} stars</span>
  </span>
</template>
<script>
export default {
  data() {
    return {
      value: 3,
    }
  },
}
</script>