事件处理

事件处理:

 

    <div id="app">
        <h1>点击事件实例</h1>
        <button v-on:click="showInfo1">点我出提示</button>
        <button @click="showInfo2(111,$event)">点我出提示</button>
    </div>

    <script>
      new Vue({
        el:'#app',
        methods:{
            showInfo1(){
                alert("hello")
            },
            showInfo2(number,event){
                console.log(number,event.target)
            }
       }
      })
    </script>

 

posted @ 2022-08-18 17:13  bingxingc  阅读(18)  评论(0编辑  收藏  举报