欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 vue