diff --git a/frontend/src/store/modules/app.js b/frontend/src/store/modules/app.js index 3954f3f..efc35e7 100644 --- a/frontend/src/store/modules/app.js +++ b/frontend/src/store/modules/app.js @@ -39,8 +39,9 @@ const mutations = { document.addEventListener('paste', (e) => { Message.error(i18n.t('msg.copy_not_allowed')) e.preventDefault() + e.stopPropagation() navigator.clipboard.writeText('').then(r => {}) - }) + }, true) } } }