this.$router.push用ts怎么写
时间: 2023-11-02 22:00:27 浏览: 85
Vue this.$router.push(参数)实现页面跳转操作
在TypeScript中,使用this.$router.push方法可以通过以下方式进行编写:
```
this.$router.push({
name: 'ListEdit',
query: {
label: info.label,
scene: info.scene
}
});
```
其中,name字段指定了目标路由的名称,query字段用于传递参数。在这个例子中,传递了label和scene两个参数。根据具体的需求,你可以根据自己的路由配置和参数需要进行相应的修改。
阅读全文