This article example shares the specific code of Vue to realize the counter display for your reference. The specific content is as follows Effect: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Counter</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <style type="text/css"> #app{ text-align: center; margin: 0 auto; line-height: 500px; } #app input{ width: 50px; height: 40px; font-size: 20px; border-radius: 5px; outline: none; /* Custom border */ border: 1px solid transparent; background-color: blue; line-height: 30px; color: white; } #app span{ padding: 20px 20px; border: 1px; } </style> </head> <body> <div id="app"> <input type="button" value="-" @click="sub"/> <span>{{num}}</span> <input type="button" value="+" @click="add"/> </div> <script> var app = new Vue({ el: "#app", data: { num: 1 }, methods:{ add: function(){ if(this.num<10){ this.num++; }else{ alert("reached the maximum!"); } }, sub: function(){ if(this.num>0){ this.num--; }else{ alert("It's gone!"); } } } }) </script> </body> </html>
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:
|
<<: Summary of synchronization and mutual exclusion knowledge points between Linux threads
>>: Detailed explanation of how a SQL statement is executed in MySQL
Table of contents 1. Introduction 2. Simple defin...
background I want to check the webpack version, b...
Written in front Sometimes you need to install so...
I will not introduce what CUDA is, but will direc...
In web design, we often use arrows as decoration ...
npm installation tutorial: 1. Download the Node.j...
During the use of mysql, it was found that the nu...
As a front-end novice, I tinkered with the front-e...
Table of contents 01 Create invisible columns 02 ...
Table of contents 1. Use the a tag to preview or ...
This article example shares the specific code of ...
1. Principle of Hotlinking 1.1 Web page preparati...
1 Download MySQL Download address: http://downloa...
1. Linux installation (root user operation) 1. In...
illustrate: Today, when continuing the last offic...