main.js写入:

Vue.directive('title', {
  inserted: function (el, binding) {
    document.title = el.dataset.title
  }
});

使用:

<div class="wrap" v-title data-title="111"></div>

 

相关文章:

  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
  • 2021-06-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-11
  • 2022-02-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案