gpt4 book ai didi

javascript - 尝试使用字符串+变量设置Vue元页面标题

转载 作者:行者123 更新时间:2023-12-02 23:56:09 26 4
gpt4 key购买 nike

我使用 Vue Meta 作为使用 Nuxt JS 2.4.5 的项目中博客应用程序的一部分

我在尝试设置标题+来自 data () 的变量时遇到了一些麻烦,我不确定我错过了什么

我尝试了多次尝试让它工作,移动代码,使用 this 手动设置它,但似乎没有任何效果......

<script>
import BlogsFromJson from '~/static/articles/blogs.json';

export default {
head: {
title: 'My Website: Blog: ' + this.myBlogTitle, // or something else
meta: [
{ hid: 'description', name: 'description', content: 'Read the latest news and articles from Flex Repay UK.' }
]
},
data () {
return {
title: this.$route.params.title,
blog: BlogsFromJson,
myBlogTitle: 'some title'
}
}
}
</script>

我尝试在 data () 中设置一个变量并静态使用它。

这样做应该给我我的网站:博客:一些标题

我可能会错过什么?

最佳答案

尝试使用函数而不是对象作为头部。改变

head: {
...
},

head () {
return {
...
}
}

关于javascript - 尝试使用字符串+变量设置Vue元页面标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55377977/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com