This repository was archived by the owner on Dec 5, 2024. It is now read-only.
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
fix: redirectedFrom
not exists in useRoute()
Β #777
Open
Description
π The bug
The redirectedFrom
prop doesn't exists in useRoute()
.
π οΈ To reproduce
Steps to reproduce the behavior:
- Go to a nuxt page and click to an another nuxt page with compontent.
const route = useRoute();
const redirectedFrom = computed(() => route.value.redirectedFrom);
console.log(redirectedFrom.value); // undefined
Thanks.