猿问

监听路由,为什么不打印呢这里?

watch: {

        $route(val, oldval) {            this.routeName = this.$route.name;
            conlog.log(val);
            conlog.log(oldval);


神不在的星期二
浏览 499回答 2
2回答

慕码人8056858

watch: {        $route(val, oldval) {            console.log(1111111)            console.log(val);            console.log(oldval)            if (val.query.currencyId) {                console.log('显示弹窗');            }                        也不对喔            

FFIVE

 watch: {     '$route': {         handler: function (to,from) {         },         deep: true,         immediate: true     } }
随时随地看视频慕课网APP

相关分类

JQuery
我要回答