<!DOCTYPE html>
<html>
<head>
<title>给组件绑定原生事件</title>
<script src="./vue.js"></script>
</head>
<body>
<div id='app'>
<child @click.native='handlerClick'></child>
</div>
<script>
Vue.component('child',{
template: '<div>hello</div>'
})
var vm = new Vue({
el:'#app',
methods: {
handlerClick: function() {
alert('click')
}
}
})
</script>
</body>
</html>
网友评论