vue 找到eSourcingRoute:RouteRecordRaw[]的数组里title是My Request的一行
时间: 2023-12-30 18:05:51 浏览: 80
您可以使用 Vue Router 的 `find` 方法来查找 `eSourcingRoute` 数组中 `title` 属性为 `"My Request"` 的那条路由记录。具体代码如下:
```
const myRequestRoute = eSourcingRoute.find(route => route.title === 'My Request');
```
这将返回 `eSourcingRoute` 数组中第一个 `title` 属性为 `"My Request"` 的路由记录。如果找不到匹配的路由记录,`myRequestRoute` 将为 `undefined`。
阅读全文