File size: 492 Bytes
936e0a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
    <!--<el-tag>{{item.value}}</el-tag>-->
    <v-row>
    <v-rating
      v-model="rating" density="compact" color="orange" half-increments></v-rating>
    <v-chip variant="text">{{item.value}}</v-chip>
        </v-row>
</template>

<script>

module.exports = {
    props:["item"],
    
    data () {
        return {
            rating: 3
        }
    },
    methods: {
        //todo
    },
    mounted: function () {
        this.rating = this.item.value/20
    },
}
</script>