This article example shares the specific code of Vue to implement a simple calculator for your reference. The specific content is as follows Case RequirementsCase ideas 1. Binding of values A and B is realized through v-model directive Implementing static pages <div id='app'> <h1>Simple Calculator</h1> <div><span>Value A:</span><span><input type="text" v-model='a'></span></div> <div><span>Value B:</span><span type="text" v-model='b'></span></div> <div><button>Calculate</button></div> <div><span>Calculation results</span><span></span></div> </div> Importing Vue <script type="text/javascript" src="js/vue.js"></script> Add instructions for static pages <div id='app'> <h1>Simple Calculator</h1> <div><span>Value A:</span> <span> <input type="text" v-model='a'> </span> </div> <div> <span>Value B:</span> <span> <input type="text" v-model='b'> </span> </div> <div> <button v-on:click="handle">Calculate</button> </div> <div><span>Calculation result</span><span v-text="result"></span></div> </div> Set calculation function <script type="text/javascript"> /* */ var vm = new Vue({ el: "#app", data: { a: '', b: '', result: '' }, methods: { handle: function () { // Implement calculation logic this.result = parseInt(this.a) + parseInt(this.b); } } }); </script> Final code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple Calculator</title> </head> <body> <div id='app'> <h1>Simple Calculator</h1> <div><span>Value A:</span> <span> <input type="text" v-model='a'> </span> </div> <div> <span>Value B:</span> <span> <input type="text" v-model='b'> </span> </div> <div> <button v-on:click="handle">Calculate</button> </div> <div><span>Calculation result</span><span v-text="result"></span></div> </div> <script type="text/javascript" src="js/vue.js"></script> <script type="text/javascript"> /* */ var vm = new Vue({ el: "#app", data: { a: '', b: '', result: '' }, methods: { handle: function () { // Implement calculation logic this.result = parseInt(this.a) + parseInt(this.b); } } }); </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:
|
<<: SQL GROUP BY detailed explanation and simple example
>>: Detailed explanation of Linux file operation knowledge points
Introduction to Text Shadows In CSS , use the tex...
Preface When I was working on a project recently,...
Today I was dealing with the issue of migrating a...
This article records the detailed installation tu...
Table of contents Overview 1. useState 1.1 Three ...
When a request is sent to your server to display ...
Execute Command docker run -d --name consul -p 85...
Detailed explanation of MySQL stored procedures, ...
How to delete environment variables in Linux? Use...
Definition and Use Using @media queries, you can ...
Since Alibaba Cloud's import of custom Ubuntu...
1: Introduction to syslog.conf For different type...
This article describes how to install the PHP cur...
Table of contents 1. Mini Program Subcontracting ...
As the number of visits increases, the pressure o...