NUXTJS如何设置页面到布局的道具?

问题描述 投票:0回答:1

我有主页和文本页。它们具有不同的标题,但只有一种布局。如何根据页面告诉layout将道具传递给header

布局:

<template lang="pug">
  .block
    headnav( headertype="mainpage" )
    nuxt
</template>

页面

<template lang="pug">
  .mainpage
</template>
<template lang="pug">
  .textpage
</template>
nuxt.js
1个回答
0
投票

尝试将以下代码添加到脚本部分(例如,在数据之后):

head() {
    return {
        title: '{your page title}'
    }
},
© www.soinside.com 2019 - 2024. All rights reserved.