想每一个字页面都单独跳一个tag页面,,若依中,必须配置动态路由,,不能通过query传递,
/category/sub/:id : 配置了一个分类的动态路由

function toSubCategory(row){

  router.push(`/shop/category/sub/${row.id}`).then(()=>{
    console.log(route,"route")
    const _route = Object.assign({},route,{title:row.name+"子分类"})
    useTagsViewStore().updateVisitedView(_route)
  })

}

在这里插入图片描述

Logo

快速构建 Web 应用程序

更多推荐