Closed magic3584 closed 11 months ago
可以尝试 NavBar title 属性绑定路由的 meta.title 值
<template #title>
11 {{ router.currentRoute.name }}
</template>
很奇怪 router.currentRoute 能出现一大串,加上 name 就无了。。。可是明明有值
const title = computed(() => {
const route = router.currentRoute.value;
return route.meta.title;
});
<template #title> {{ title }} </template>
原来是个 ref... 感谢大佬!
插槽看了还是不太懂,NavBar 和 每个 component 也没有嵌套关系