watch: {$route: {//$route发生变化时执行下面的函数handler: function (to) {console.log(to, 'to')if (to.query.auth_code) {this.getStaffInfo(to.query.auth_code)}const query = to.queryconsole.log(query, 'query')if (query) {this.redirect = query.redirectthis.otherQuery = this.getOtherQuery(query)console.log(this.redirect, 'redirect')console.log(this.otherQuery, 'otherQuery')}},immediate: true//是否在初始化时就监听变化}
