vue 修改当前网页标题
Posted 仲夏の梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 修改当前网页标题相关的知识,希望对你有一定的参考价值。
<template>
<div v-title :title="标题名字变量">
</div>
</template>
// method同级
directives:
title:
inserted: function (el)
console.log(el)
document.title = el.getAttribute('title') // 页面加载完成之后自动
,
效果:
以上是关于vue 修改当前网页标题的主要内容,如果未能解决你的问题,请参考以下文章