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:
|
<<: CentOS 7 Forgot Password Solution Process Diagram
>>: Troubleshooting of master-slave delay issues when upgrading MySQL 5.6 to 5.7
Let our users choose whether to move forward or ba...
Table of contents 1. Introduction to autofs servi...
Table of contents Preface optimization Derivative...
public function json_product_list($where, $order)...
Table of contents The pitfalls Filling method Wha...
This article shares the specific code for impleme...
closure service nginx stop systemctl stop nginx s...
Table of contents 1. Mutex 1. Initialization of m...
Frameset pages are somewhat different from ordina...
Table of contents Preface: Implementation steps: ...
Implementation ideas The outermost is a big circl...
Table of contents Business requirements: Solution...
Purpose Understand the role of nextTick and sever...
In a web page, the <input type="file"...
This article example shares the specific code of ...