使用elementUi时,如果使用了按钮,点击以后,如果不触发别的点击,,按钮是保持聚焦的状态,
解决办法 : 给vue挂载一个办法 全局都能使用
Vue.prototype.$unFocus = () => {
// 用于强制失焦 => elementUI bug, 点击按钮后不失焦
const button = document.createElement('button');
button.style.position = 'fixed';
button.style.opacity = 0;
document.body.appendChild(button);
button.focus();
button.remove();
};