我有主页和文本页。它们具有不同的标题,但只有一种布局。如何根据页面告诉layout
将道具传递给header
?
布局:
<template lang="pug">
.block
headnav( headertype="mainpage" )
nuxt
</template>
页面
<template lang="pug">
.mainpage
</template>
<template lang="pug">
.textpage
</template>
尝试将以下代码添加到脚本部分(例如,在数据之后):
head() {
return {
title: '{your page title}'
}
},