v-mousedown-outside

Some people think a mousedown is like a click, but it's only the first half.

(Hint: Half-way click around on the page.)

test
a
b
c d e
f
g h i

v-mousedown-outside example

		

		<script>
			export default {
				methods: {
					onMouseDownOutside(e, el) {
						console.log("onMouseDownOutside");
						console.log("Event:", e);
						console.log("Element mouse half-way clicked on:", e.target);
						console.log("Element that yearned for this information:", el);
					}
				}
			}
		</script>