vue3获取当前页面的路由
时间: 2023-05-21 17:03:18 浏览: 128
vue获取当前激活路由的方法
您可以使用Vue Router提供的$route对象来获取当前页面的路由。具体代码如下:
```
import { getCurrentInstance } from 'vue'
const { proxy } = getCurrentInstance()
const currentRoute = proxy.$route
```
这段代码会返回当前页面的路由信息,包括路径、参数等。
阅读全文