返回我就安安静静的......登陆

我就安安静静的学习,练习项目

朱太重2019-05-11 10:57:34252

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<script type="text/javascript" src="/pluins/Vue.js"></script>

<title>两个值变化相加</title>

</head>

<body>

<div id="box">

<input type="text" v-model="a" >

<input type="text" v-model="b" >

{{c}}

</div>

<script type="text/javascript">

new Vue({

el:'#box',

//   template:'<h6 style="color:red;">asdfffff</h6>',

data:{

a:2,

b:1,

c:3

},

watch: {

a: function () {

this.c=parseInt(this.a)+parseInt(this.b)

},

b: function () {

this.c=parseInt(this.a)+parseInt(this.b)

}

}



});

</script>

</body>

</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送