This article example shares the simple implementation code of Vue counter for your reference. The specific content is as follows Process considerations
Actual code and screenshots<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Counter</title> </head> <body> <div id="app"> <!--Counter function area--> <div class="input-num"> <button @click="sub"> - </button> <span>{{num}}</span> <button @click="add"> + </button> </div> </div> <!-- Development version, including helpful command line warnings --> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script> //vue instance var app = new Vue({ el:"#app", data: { num:1 }, methods: { add:function(){ //console.log('add') if(this.num<10){ this.num++; }else{ alert('Don't click, it's the biggest one!'); } }, sub:function(){ //console.log('sub') if(this.num>0){ this.num--; }else{ alert('Don't click, it's the minimum!'); } } }, }) </script> </body> </html> For tutorials on vue.js components, please click on the special vue.js component learning tutorial to learn. 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:
|
<<: Solution to MySQL garbled code problem under Linux
>>: The problem of mmx64.efi not found occurs when installing Ubuntu18 dual system on win10
Because the docker daemon needs to bind to the ho...
Preface In this article, we'll explore the ev...
This article shares the specific code of JavaScri...
BinLog BinLog is a binary log that records all da...
Today I made a menu button. When you move the mous...
How to install MySQL 5.7.18 on Linux 1. Download ...
<br />According to statistics, the average s...
System environment: Win10 64-bit MySQL version: m...
This article uses an example to describe how to c...
The most important logs in the MySQL log system a...
Solution Add position:relative to the parent elem...
In the process of database operation, it is inevi...
Description: Limit the number of lines of text di...
Table of contents First we need to build the page...
Cascading and Cascading Levels HTML elements are ...