Vue入门06--v-on

代码:

v-on简写@

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script type="text/javascript" src="js/vue.js" ></script>
	</head>
	<body>
		<div id="app">
			<button @click="add">按钮</button>
		</div>
		<script>
			new Vue({
				el:"#app",
				data:{
					msg:"hello"
				},
				methods:{
					//es5 写法
					add:function(){
//						alert(1)
//						alert(this.msg)
						this.reduce()
					},
					reduce:function(){
						console.log(1)
					}
					//es6 写法
//					add(){
//						alert(1)
//					}
				}
			})
		</script>
	</body>
</html>

显示:点击按钮弹出1

猜你喜欢

转载自blog.csdn.net/AsaZyf/article/details/83270617
今日推荐