我在我的博客的 Vue 应用程序中有一个非常基本的设置,我有/blog
,这是我的博客帖子的列表,然后/blog/:slug
,slug 是单个帖子的 slog(例如mysite.com/blog/my-awesome-blog-post
。我vue-meta
用于元标记, 一切都很好 - 除了个别博客文章的标签之外的一切。我的设置是:
应用程序.vue
export default {
metaInfo: {
title: 'Building great web experiences',
titleTemplate: 'My Website | %s',
},
meta: [
{ charset: 'utf-8' },
{ name: 'description', content: 'The website for my organization' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
}
博客.vue
export default {
metaInfo: {
title: 'Blog Home'
},
BlogPost.vue(遵循vue-meta 文档)
export default {
data() {
metaDescription: '',
},
metaInfo() {
return {
title: this.post.data.title,
meta: [
{ vmid: 'description', name: 'description', content: this.metaDescription}
]
}
},
...
methods: {
getPost() {
const vm = this;
butter.post
.retrieve(this.$route.params.slug)
.then(res => {
vm.post = res.data;
vm.metaDescription = vm.post.data.summary;
})
.catch(res => {
console.log(res);
});
}
},
问题是当我转到博客文章页面时,标题元标记仍然是My Site | Blog Home
,而不是My Site | My Awesome Blog Post
. 如果我在 for 中放入一个静态字符串title
,它可以正常工作。而且,如果我metaInfo()
在 Vue devtools 中检查函数返回的对象,它会显示title
适当的值。我做错了什么,还是这是一个错误?根据文档,这很“容易”,但似乎并非如此。