vue获取当前路由的五种方式示例代码
作者:一沓纸稿
这篇文章主要给大家介绍了关于vue获取当前路由的五种方式,文中通过代码示例介绍的非常详细,对大家学习或者使用vue具有一定的参考学习价值,需要的朋友可以参考下
第一种
import { defineComponent,ref} from 'vue'; import { useRouter } from 'vue-router'; const router=useRouter //通过实例化useRouter的router对象中,含有多个属性,其中就包含了当前路由地址, console.log('router',router.currentRoute.value.fullPath);
第二种
import { getCurrentInstance } from 'vue'; const { proxy }: any = getCurrentInstance(); console.log(proxy.$router.currentRoute.value.fullpath);
通过getCurrentInstance 获取当前的组件实例,从而通过其获取router,然后胡德当前路由地址
第三种
import { toRaw} from 'vue'; import { useRouter } from 'vue-router'; let router = useRouter() console.log(toRaw(router).currentRoute.value.fullPath); 通过toRaw返回其原始对象,即将实例化的router转化为useRouter
第四种
import { watch } from 'vue'; import { useRouter } from 'vue-router'; let router = useRouter() watch(router,(newValue, oldValue) => { console.log(newValue.currentRoute.value.fullPath);}, { immediate: true } ); //这一种写法比较麻烦,但是逻辑比较简单,通过监听获取最新的router对象,进而获取路由地址,而且在第一次的时候,就要执行监听,
第五种
import { ref } from 'vue'; import { useRoute } from 'vue-router'; let path=ref("") const route=useRoute() path.value=route.path //这一种最为简单,推荐这种
总结
到此这篇关于vue获取当前路由的五种方式的文章就介绍到这了,更多相关vue获取当前路由内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!