UNPKG

cheetah-framework

Version:

Cheetah Framework JS used in all our applications

13 lines (9 loc) 282 B
import { MessageBox } from 'element-ui' export function openWindow (url) { var newWin = window.open(url) if (!newWin || newWin.closed || typeof newWin.closed === 'undefined') { MessageBox.alert(Trans('popup_blocked_message'), { confirmButtonText: 'OK' }) } }