uniapp 监听路由跳转

需要实现一个监听页面每次跳转的时候都能触发的事件,使用 uni.addInterceptor uni拦截器实现,拦截路由跳转方法

// APP.vue文件



监听移动端的物理返回键

注意:微信小程序不支持。

methods: {
},
onBackPress(options) {
  console.log("用户按下物理返回键");
},

你可能感兴趣的:(uniapp,前端,vue,uni-app,javascript,前端,vue.js)