Vue侦听器
程序员文章站
2022-05-16 21:30:04
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="app">
<h1>{{msg}}</h1>
<h1>{{reverseMsg}}</h1>
<ul>
<li v-for="item in arr">
{{item}}
</li>
</ul>
</div>
<script type="text/javascript">
var app = new Vue({
el:"#app",
data:{
msg:"Hello Vue",
arr:["A", "B", "C"]
},
computed:{
reverseMsg:{
get:function(){
return this.msg.split("").reverse().join("")
},
set:function(value){
console.log(value)
this.msg = value.split("").reverse().join("")
}
}
},
//watch监听data数据。
watch:{
msg:function(val){
console.log(val);
},
arr:function(val){
console.log(val);
}
}
})
</script>
</body>
</html>
上一篇: vue侦听器