ant-design-vue/components/rate/demo/text.md
2018-03-21 15:45:01 +08:00

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>