1 Star 8 Fork 8

高鹏/learn-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
demo_007.html 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
F_喜欢足球 提交于 2020-03-24 14:12 . Vue双向绑定例子
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.bootcss.com/vue/2.6.11/vue.min.js"></script>
</head>
<body>
<div id="app">
<input type="text" v-model="num1">
<select v-model="op">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" v-model="num2">
<button @click="calc">=</button>
<span>{{result}}</span>
</div>
<script>
var app = new Vue({
el: "#app",
data: {
num1: null,
num2: null,
op: null,
result: null
},
methods: {
calc() {
switch (this.op) {
case '+':
this.result = +this.num1 + +this.num2;
break;
case '-':
this.result = +this.num1 - +this.num2;
break;
case '*':
this.result = +this.num1 * +this.num2;
break;
case '/':
this.result = +this.num1 / +this.num2;
break;
}
}
}
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gapper/learn-vue.git
git@gitee.com:gapper/learn-vue.git
gapper
learn-vue
learn-vue
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385