在Vue中动态地添加meta标签的keywords属性和description属性可以通过修改页面的头部信息来实现。下面小编给大家简单介绍一下具体操作代码!
vue全局动态添加meta属性代码
//打开main.js,在router.beforeEach里新增以下代码
router.beforeEach((to,from,next)=>{
if(Object.keys(to.meta).length>0 && to.matched.length>0){
let this_meta=to.matched[to.matched.length-1].meta
//动态添加标题
if(this_meta.title)document.title=this_meta.title
let head = document.getElementsByTagName('head');
//动态添加keywords
let keyword = document.createElement('meta');
if(document.querySelector('meta[name="keywords"]')){
document.querySelector('meta[name="keywords"]').setAttribute('content',this_meta.keywords)
}else{
keyword.setAttribute('name','keywords')
keyword.setAttribute('content',this_meta.keywords)
head[0].appendChild(keyword)
}
//动态添加description
let description = document.createElement('meta');
if(document.querySelector('meta[name="description"]')){
document.querySelector('meta[name="description"]').setAttribute('content',this_meta.description)
}else{
description.setAttribute('name','description')
description.setAttribute('content',this_meta.description)
head[0].appendChild(description)
}
}
next()
})
vue语法中$router和$route有什么不同?附示例代码
上面是“vue全局动态添加meta属性(title,keywords,description)”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_14404.html
workflows工作流
一颗柔和的水晶金字塔ComfyUI工作流
一张严重受损的宇宙飞船的照片ComfyUI工作流
一盒用五颜六色的食材烹制的热气腾腾的寿司
一只蚊子被嵌在琥珀中ComfyUI工作流
海中一头鲸鱼ComfyUI工作流
一个漂亮的混血女孩ComfyUI工作流
树上挂着一只快乐的小樱桃
一棵树从鸟笼里长出来的梦幻般场景
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

如何利用css3+js做一个下雨效果
日历设置每个月颜色都不一样
js导出excel插件(兼容mac电脑Numbers表格)
jquery鼠标滑过图片边框特效(jquery.focus-follow插件)
iframe开发admin后台
canvas黑洞漩涡(canvas+js)







