当前位置: 首页 > 工具软件 > Openpush > 使用案例 >

页面跳转——router.push或者window.open

戚晨
2023-12-01

window.open(url, target, features, replace)

打开一个新窗口,或者是已命名窗口。

url:

target:

features:

replace:

router.push

  $router.push({

         path: `/first/second/${row.canshu}`,

});

// router.push 的路由路径,如果最前面没有 斜杠的话,会和原路径拼接到一起

 类似资料: