vue怎么获取title
在 vue 中获取标题的方法有:使用 document.title。使用 vuex 提供的 $title 混入,它可以通过 this.$title 访问。
如何在 Vue 中获取标题
在 Vue 中获取页面标题的方法如下:
- 使用 document.title
document.title 属性返回或设置当前 HTML 文档的标题。要在 Vue 中获取标题,可以在组件或应用程序实例中使用 document.title:
const title = document.title;
发表评论