router - 更新日志
1.0.03(2024-08-28)
- 新增监听
pages。json
文件;事实生成路由代码提示;
1.0.02(2024-07-30)
扩展路由传参
router.push('/xx?id=1')
router.push('/xx', { type: 2 })
router.push('/xx?id=1', { type: 2 })
router.push({ url: '/xx?id=1' })
router.push({ url: '/xx', query: { type: 2 } })
router.push({ url: '/xx?id=1', query: { type: 2 } })
next('/xx?id=1')
1.0.01(2024-07-25)
-
增加
tabbar
页面导航守卫:router.tabbarBeforeEach
; -
增加
tabbar
页面以外的导航守卫:router.pagesBeforeEach
;
1.0.0(2024-07-24)
- 初体验