mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
27 lines
675 B
Vue
27 lines
675 B
Vue
|
<template>
|
||
|
<div class="demo-rate-block">
|
||
|
<span class="demonstration">Default</span>
|
||
|
<el-rate v-model="value1"></el-rate>
|
||
|
</div>
|
||
|
<div class="demo-rate-block">
|
||
|
<span class="demonstration">Color for different levels</span>
|
||
|
<el-rate v-model="value2" :colors="colors"> </el-rate>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from 'vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
return {
|
||
|
value1: ref(null),
|
||
|
value2: ref(null),
|
||
|
colors: ref(['#99A9BF', '#F7BA2A', '#FF9900']), // same as { 2: '#99A9BF', 4: { value: '#F7BA2A', excluded: true }, 5: '#FF9900' }
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|