useRoute()中找不到push,go,back等,代码跳转不行,怎么解决
首先 引用路由:import {useRouter} from 'vue-router';
setup()中使用:let router = useRouter(),使用名需与引用名一致
然后使用router进行go,push,back等,如router.push('/about')
useRouter