1. 主页
  2. 文档
  3. vue2 dcloud
  4. 第10节 事件绑定

第10节 事件绑定

第10节 事件绑定

<div v-on:click="" >aaaa</div>

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="vue.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="app">
	<div id="example-1">
		<button v-on:click="counter += 1"> 数值 :  {{ counter }} </button><br />
		<button v-on:dblclick="greet('abc', $event)">Greet</button>
	</div>
</div>
<script type="text/javascript">
var vm = new Vue({
	el : "#app",
	data : {
		counter: 0,
		name : "vue"
	},
	methods:{
		greet : function (str, e) {
			alert(str);
			console.log(e);
		}
	}
});
</script>
<style type="text/css">

</style>
</body>
</html>
这篇文章对您有用吗?

我们要如何帮助您?