vue2.0 동적 변화 index에서 title

1475 단어 vue-js
제1종
let setDocumentTitle = function (title) {
    document.title = title;
    let ua = navigator.userAgent;
    if (/\bMicroMessenger\/([\d\.]+)/.test(ua) && /ip(hone|od|ad)/i.test(ua)) {
        var i = document.createElement('iframe');
        i.src = '/favicon.ico';
        i.style.display = 'none';
        i.onload = function () {
            setTimeout(function () {
                i.remove();
            }, 9);
        };
        document.body.appendChild(i);
    }
};

경로 이동 전
//  title 
router.beforeEach((to, from, next) => {
  setDocumentTitle(to.meta.pageTitle)
  next()
})

제2종
https://github.com/deboyblog/vue-wechat-title

좋은 웹페이지 즐겨찾기