1.在main.js文件里添加全局組件
Vue.directive('title', {
inserted: function (el, binding) {
document.title = el.dataset.title
}
})
2.在頁面組件開頭位置添加
