在Vue組件中獲取全局的點擊事件

// 定義全局點擊函數
Vue.prototype.globalClick = function (callback) {
    document.getElementById('main').onclick = function () {
        callback();
    };
};

 

mounted: function () {
    this.globalClick(this.moreSetupMenuRemove);
}

  

// 移除操做
moreSetupMenuRemove () {
    this.$refs.moreSetupMenu.style.display = 'none';
},
相關文章
相關標籤/搜索