使用nuxt,如何将路线名称放在页面标题中?

我想为每个页面将页面标题设置为不同的值。

在常规的Vue.js中,我执行了以下操作:

import router from './router'
import { store } from './store/store';

router.beforeEach((to, from, next) => {
    store.mutations.setRoute(to);
    document.title = store.getters.pageTitle;
    next();
}

我如何在nuxt中获得这种效果?

也就是说,在初始页面加载和更改页面时,我都希望浏览器选项卡的标题更改。例如,从“我的应用程序-关于”到“我的应用程序-个人资料”。

小哥斯丁2020/03/26 16:10:04

nuxt docs中pages您可以在每个组件中定义head函数,该函数返回页面标题,即

head() {
    return {
      title: "About page"
    };
  }