v-keyup-outside

Keyup is the second most boring of the key events.

(Hint: Click inside a textbox and hold down a key (it has to be 'v'). While holding 'v', click in another box and release 'v'. Amazing.)

v-keyup-outside example

		

		<script>
			export default {
				methods: {
					onKeyUpOutside(e, el) {
						console.log("onKeyUpOutside");
						console.log("Event:", e);
						console.log("Element keys were released in:", e.target);
						console.log("Element overcome with antici...pation:", el);
					}
				}
			}
		</script>