正文vue 进入页面每次都调用methods里的方法IP云V管理员/2022-08-03/4 阅读 08/03提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 // 监听路由,每次进入页面调用方法,放在method里mounted(){this.getPath()},methods: {getPath(){console.log(this.$route.path);if (this.$route.path == '你要进入的路由') {this.init() // 初始化的方法}}},watch: {'$route':'getPath'},