为了账号安全,请及时绑定邮箱和手机立即绑定

Invalid handler for event "click": got undefined

<!DOCTYPE html>
<html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="./vue.js"></script>
</head>
<body>
<!--这里的div是挂载点-->
<div id="sio">
    <div v-on:click="handleClick">
        {{content}}
    </div>
</div>
<script>
    new Vue({
        el: "#sio",
        data: {
            content: "hello"
        },
        method: {
            handleClick: function () {
                alert(123)
            }
        }
    })
</script>
</body>
</html>

https://img1.sycdn.imooc.com//5d28bc7c0001cec006650723.jpg

如图,点击hello后没有反应,控制台输出的信息如上。求帮忙?

正在回答

1 回答

已解决...method打少了一个s,正确应该是methods,粗心大意惹的锅

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Invalid handler for event "click": got undefined

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信