Vue implements star rating with decimal points

Vue implements star rating with decimal points

This article shares the specific code of Vue to implement star rating with decimal points for your reference. The specific content is as follows

First we need to import the vue.js file

CSS part

<style>
 main{
  position:relative;
  }
 .star_line{
  /* Set to force no line break */
  width-space:nowrap;
  overflow: hidden;
  position: absolute;
  }
 .star{
  display: inline-block;
  /* Set the mouse to turn into a small hand style when it is placed on a star*/
  cursor: pointer
  }
</style>

Body

<div id="app">
 <input type="text" v-model.number="score">
 <- When any component receives the bound value in a two-way binding, it must use value to receive it. The principle is as follows: input ->
 <v-star v-model="score"></v-star>
</div>

In the js part, we use components, input is in the root component, and the stars we created are placed in a component. The star rating is mainly realized through two-way binding, where the parent component and the child component pass values ​​to each other.

Component template part

<script id="v-star" type="text/html">
    <main :style="mainStyle">
        <!-- White Star -->
        <div class="star_line">
            <span @click="changeValue(star)" class="star" :style="starStyle" v-for="star in total">☆</span>
        </div>
        <!-- Black Star -->
        <div class="star_line" :style="blackStyle">
            <span @click="changeValue(star-1)" class="star" :style="starStyle" v-for="star in total">★</span>
        </div>
    </main>
</script>

js part

<script>
    Vue.component("v-star",{
        template:"#v-star",
        props:{
            total:{
                default:10,
            },
            size:{
                default:30
            },
            // Receive the score passed from the parent component
            value:{}
        },
        // Computed properties computed:{
            mainStyle(){
                return {
                    width:this.size * this.total + "px",
                }
            },
            starStyle(){
                return {
                    width:this.size + "px",
                    height:this.size + "px",
                    fontSize: this.size + 6 + "px"
                }
            },
            blackStyle(){
                return {
                    width:this.value / this.total * 100 + "%"
                }
            }
        },
        methods:{
            changeValue(value){
                // Pass the latest result to input
                // The input tag has a default input event this.$emit("input",value)
            }
        }
    })

    new Vue({
        el:"#app",
        data:{
            score:1
        }
    })
</script>

Rendering

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue2.0 implements the front-end star rating function component example code

<<:  CentOS 7 Forgot Password Solution Process Diagram

>>:  Troubleshooting of master-slave delay issues when upgrading MySQL 5.6 to 5.7

Recommend

Small paging design

Let our users choose whether to move forward or ba...

Linux Autofs automatic mount service installation and deployment tutorial

Table of contents 1. Introduction to autofs servi...

How to clear the timer elegantly in Vue

Table of contents Preface optimization Derivative...

getdata table table data join mysql method

public function json_product_list($where, $order)...

js to achieve 3D carousel effect

This article shares the specific code for impleme...

How to shut down/restart/start nginx

closure service nginx stop systemctl stop nginx s...

A very detailed explanation of Linux C++ multi-thread synchronization

Table of contents 1. Mutex 1. Initialization of m...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

Implement full screen and monitor exit full screen in Vue

Table of contents Preface: Implementation steps: ...

CSS sample code to achieve circular gradient progress bar effect

Implementation ideas The outermost is a big circl...

Two implementation solutions for vuex data persistence

Table of contents Business requirements: Solution...

The role of nextTick in Vue and several simple usage scenarios

Purpose Understand the role of nextTick and sever...

Vue implements bottom query function

This article example shares the specific code of ...