登录 注册
当前位置:主页 > 资源下载 > 50 > 基于 Taro 扩展,实现类似 vue-router 的使用体验的 vue-taro-router

基于 Taro 扩展,实现类似 vue-router 的使用体验的 vue-taro-router

  • 更新:2024-08-30 10:53:33
  • 大小:16KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

VueTaroRouter 基本 Taro ,扩展成 vue-router 的使用体验 Installation npm i vue-taro-router -S Usage // router.js import VueTaroRouter from "vue-taro-router"; const router = new VueTaroRouter(); // 添加拦截器 router .beforeEach((to, from, next) => { console.log(to); console.log(from); next(); }) .beforeEach((to, from, next) => { if (~to.path.indexOf("abc2")) { // 在拦截器里重定向 next({