概述
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="app">
<input type="text" v-model="num1">
<select v-model="fuHao">
<option value="0">+</option>
<option value="1">-</option>
<option value="2">*</option>
<option value="3">/</option>
</select>
<input type="text" v-model="num2">
<button v-on:click="jiSuan">=</button>
<span id="span">{{ result }}</span>
</div>
<script src="node_modules/vue/dist/vue.js"></script>
<script>
var app = new Vue({
el: '#app',
data: {
num1: 0,
fuHao: 1,
num2: 0,
result: 0
},
methods: {
jiSuan: function () {
if(this.fuHao == 0) {
this.result = Number(this.num1) + Number(this.num2)
} else if (this.fuHao == 1) {
this.result = Number(this.num1) - Number(this.num2)
}else if (this.fuHao == 2) {
this.result = Number(this.num1) * Number(this.num2)
}else if (this.fuHao == 3) {
this.result = Number(this.num1) / Number(this.num2)
}
}
}
})
</script>
</body>
</html>
最后
以上就是激情咖啡豆为你收集整理的vue-加减乘除计算器案例的全部内容,希望文章能够帮你解决vue-加减乘除计算器案例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复