<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<input type="text" v-model="n1">
<select v-model="opt">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" v-model="n2">
<input type="button" value="=" @click="calc">
<input type="text" v-model="result">
</div>
<script>
new Vue({
el:'#app',
data: {
n1:0,
n2:0,
result:0,
opt:'+'
},
methods:{
calc(){//计算器算数的方法
/*switch (this.opt) {
case "+":
this.result=parseInt(this.n1)+parseInt(this.n2);
break;
case "-":
this.result=parseInt(this.n1)-parseInt(this.n2);
break;
case "*":
this.result=parseInt(this.n1)*parseInt(this.n2);
break;
case "/":
this.result=parseInt(this.n1)/parseInt(this.n2);
break;
}*/
// 投机取巧法,正式开发尽量少用
var codeStr='parseInt(this.n1)'+this.opt+'parseInt(this.n2)';
this.result=eval(codeStr);//eval解析字符串
}
}
});
</script>
</body>
</html>