Vue的watch监听事件

Posted charlypage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue的watch监听事件相关的知识,希望对你有一定的参考价值。

Vue的watch监听事件

相关html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>名称案例</title>
    <script src="../js/vue-2.4.0.js"></script>
</head>
<body>
<div id="app">

    <input type="text" v-model="firstname" @keyup="getFullname">+
    <input type="text" v-model="lastname" @keyup="getFullname">=
    <input type="text" v-model="fullname">

</div>

<script>

    var vm = new Vue({

        el: "#app",
        data: {
            firstname: "",
            lastname: "",
            fullname: ""
        },
        methods: {
            getFullname: function () {
//                this.fullname = this.firstname+this.lastname;
            }
        },
        watch: {
            //使用这个可以监听data中指定数据的变化,然后触发watch中对应的function的处理
            'firstname': function (newVal,oldVal) {

                console.log((newVal + "--" + oldVal));
            },
            'lastname': function (newVal,oldVal) {
                console.log((newVal + "--" + oldVal));
            }

        }


    })


</script>


</body>
</html>

以上是关于Vue的watch监听事件的主要内容,如果未能解决你的问题,请参考以下文章

vue中watch监听sessionstorage中值的变化

Vue--名称案例,监听键盘事件@keyup--实时获取数据-----watch属性方法获取

vue--监听器

vue的watch中的immediate什么意思

Vue watch对象属性并触发多个事件

vue循环中添加路由跳转点击第一次不生效