美文网首页
vue 进入页面每次都调用methods里的方法

vue 进入页面每次都调用methods里的方法

作者: 小虾米前端 | 来源:发表于2019-06-01 16:53 被阅读0次
    // 监听路由,每次进入页面调用方法,放在method里
    mounted(){
    this.getPath()
    }
    methods: {
        getPath(){
    console.log(this.$route.path);
    if (this.$route.path == '你要进入的路由') {
    this.init() // 初始化的方法
    }
    }
    },
    }
    watch: {
    '$route':'getPath'
    },
    

    相关文章

      网友评论

          本文标题:vue 进入页面每次都调用methods里的方法

          本文链接:https://www.haomeiwen.com/subject/ydyatctx.html