vue学习七

    <div id="app7">
        <div style="height: 80px;width: 80px;background-color: aquamarine;" @click="father">
            <div style="height: 40px;width: 40px;background-color: bisque;" @click="son"></div>
        </div>
    </div>
    <script>
        const app7=new Vue({
            el:'#app7',
            data:{},
            methods:{
                father(){
                    console.log("父亲被点击")
                },
                son(e){
                    e.stopPropagation()
                    console.log('儿子被点击')
                }
            }
        })
    </script>

 

posted @ 2023-10-20 16:23  子过杨梅  阅读(3)  评论(0编辑  收藏  举报