fix: 修复操作页签后 打开页面需要使用fullPath,否则可能会导致参数丢失引起数据加载异常

pull/12/head
xingyu 2023-05-10 18:36:30 +08:00
parent 7f9881fbc4
commit 764b0f0f6c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export interface MultipleTabState {
function handleGotoPage(router: Router) {
const go = useGo(router)
go(unref(router.currentRoute).path, true)
go(unref(router.currentRoute).fullPath, true)
}
const getToTarget = (tabItem: RouteLocationNormalized) => {