Vue3.0学习 (5)- v-on指令监听事件

一、html body 部分

1、v-on + 需要监听的事件 + 执行事件时需要执行的函数

   <div v-on:click="onClick">
        <div>
            点击666
        </div>
    </div>

在这里插入图片描述

2、省略的写法 把v-on: 替换成 @

    <div @click="onClick">
        <div>
            点击6667
        </div>
    </div>

二、html script部分

1、函数写法注意事项

1.1 函数写在setup里面,并且必须要return出去。
1.2 函数在return里的位置可以在变量前面
1.3 函数区分大小写

const app1={
    setup(){
        function onClick(event){
            alert('hello')
            console.log(event)
        }
        return {
            message2,
            message3,
            onClick
        }
    }
}

三、源码

<!DOCTYPE html>
<html>
    <!-- html+vue 模式需要把 js文件在head中引入进来 -->
    <head>
        <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
        <script src="vue.beta.17.js"></script>
    </head>
    <body>
        <div id="app5">
            {{message2}}
            <div>
                {{message3}}
            </div>
            <div v-on:click="onClick">
                <div>
                    点击666
                </div>
            </div>
            <div @click="onClick">
                <div>
                    点击6667
                </div>
            </div>
        </div>
    </body>

    <!-- 业务逻辑写在下面的script标签中  加载vue.js写在head中  -->
    <!-- 下方的script类似小程序js文件 -->
    <script>
        // 从对象中提取出来部分属性
        const {createApp,ref,reactive} = Vue
        const message2 ="hello, 9 yue"
        const message3="hello, 10 yue"
        const app1={
            setup(){
                function onClick(event){
                    alert('hello')
                    console.log(event)
                }
                return {
                    message2,
                    message3,
                    onClick
                }
            }
        }
        // mount为挂载的意思,后面可以通过# 来选择div的id 也可以通过 . 来div的class
        createApp(app1).mount('#app5')
    </script>

    <!-- 类似小程序 css -->
    <style>

    </style>
</html>
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值