I am facing an issue with meta information in a Vue page. When I try to access "this.$route.meta", it does not display any meta information. However, when I inspect the Vue page element, I can see that there is indeed meta information present. How can I solve this issue?
export default {
watch: {
$route() {
console.log(this.$route.meta)
}
}
}
export default {
components: {
Teacontent
},
head() {
return {
meta: [
{ hid: 'description', name: 'description', title: 'Tea Manage' }
]
}
}
}