【汇智学堂】Vue框架基础(3)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
				<script src="https://cdn.jsdelivr.net/npm/vue"></script>	
	</head>
	<body>
		<div id="app">
		<button @click="click">点击button</button>
		<button v-on:click="click1">点击button</button>
		</div>
	</body>
<script>
	var vm=new Vue({
		el:"#app",
		methods:{
			click:function(){
				alert(22222)
			},
			click1:function(){
				alert(3333333)
			}
		}
	})
</script>
</html>



posted on 2019-12-24 18:00  Bruce丶Lee  阅读(75)  评论(0)    收藏  举报

导航