我一直在尝试使用 Vuejs3 useHead 包并添加动态标题和描述元,但我得到 $route 未定义....我需要帮助...
<router-link :to="{name:'productDetails', params:{id:rope._id, title:rope.title, price: rope.price, description:rope.description, quantity:rope.totalQuantity}}">
peoductDetails.vue:
setup(){
useHead({
title: this.$route.params.title,
meta: [
{
name: `description`,
content: `blalala`
},
],
})
},