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
Table of contents 1. How to view the binary data ...
MySQL slow query, whose full name is slow query l...
Table of contents 1. Sub-route syntax 2. Examples...
text 1) Download the Ubuntu image docker pull ubu...
The main differences are as follows: 1. MySQL use...
The purpose of writing scripts is to avoid having...
For a website, usability refers to whether users c...
Description and Introduction Docker inspect is a ...
Preface Starting from React 16, the concept of Er...
1. List query interface effect Before introducing...
The application scenario is: the iframe page has n...
When I was writing join table queries before, I a...
MySQL is a relational database management system ...
Modify the simplified file size and download the ...
Fix for issues with historical Linux images The E...