Rate 评分组件,官方链接:https://element.eleme.cn/#/zh-CN/component/rate

 

二、辅助文字

用辅助文字直接地表达对应分数

test.vue

<template>
  <div style="width: 20%">
    <el-rate
      v-model="value"
      show-text>
    </el-rate>
  </div>
</template>

<script>
  export default {
    data() {
      return {
        value: null
      }
    },
    methods: {
    },
  }
</script>

<style scoped>

</style>
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-16
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2021-07-31
  • 2021-11-08
猜你喜欢
  • 2022-12-23
  • 2021-08-30
  • 2021-08-12
  • 2021-06-22
  • 2021-12-20
  • 2021-12-14
  • 2021-12-15
相关资源
相似解决方案