UNPKG

egg-born-front

Version:
10 lines (9 loc) 301 B
export default function (Vue) { window.addEventListener('beforeunload', event => { const dirty = Vue.prototype.$meta.vueLayout.onbeforeunload(); if (!dirty) return; const message = Vue.prototype.$text('PageDirtyQuitConfirm'); event.returnValue = message; return message; }); }