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

29 lines
468 B
Markdown
Raw Normal View History

2018-03-21 07:45:01 +00:00
<cn>
#### 文案展现
给评分组件加上文案展示。
</cn>
<us>
#### Show copywriting
Add copywriting in rate components.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-21 07:45:01 +00:00
<template>
<span>
2019-09-28 12:45:07 +00:00
<a-rate :tooltips="desc" v-model="value" />
2019-03-18 12:00:00 +00:00
<span class="ant-rate-text">{{desc[value - 1]}}</span>
2018-03-21 07:45:01 +00:00
</span>
</template>
<script>
2019-09-28 12:45:07 +00:00
export default {
data() {
return {
value: 3,
desc: ['terrible', 'bad', 'normal', 'good', 'wonderful'],
};
},
};
2018-03-21 07:45:01 +00:00
</script>
```