[Vuejs]-How can I disable ESC key when Browser in full-screen mode

0👍

What I would do is validate the keypress, so like…

function logKey(e) { 
   if(e.code === "esc"){
   // do something
   }
}

https://developer.mozilla.org/en-US/docs/Web/Events/keypress

I haven’t used Vue but for sure it has that event. Haven’t tested it, by the way.

Leave a comment