๐ 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.