Top "Vue-events" questions

vuejs: @keyup.esc on div element is not working

I'm expecting that 'close' event is fired when I'm clicking ESC button being on "shadow-modal" div, but it's not happening …

vue.js vuejs2 vue-events
What does @input="$emit('input', $event)" means in vue component?

I am reading some code that I want to update: <b-input :value="value" @input="$emit('input', $event)" ref="input" :…

vue.js vue-events
v-on:change does not work for vue-multiselect

I am using vue-multiselect component in my vue.js project, I am using v-on directive to execute a function on …

vue.js vuejs2 vue-component vue-events
VueJS: @click.native.stop = "" possible?

I have several nested components on the page with parents component having @click.native implementation. Therefore when I click on …

vuejs2 vue-component vue-events
Vue stopPropagation not working - child to parent

I am struggling with events propagation. The task is to prevent clicking on anything alse, if the data is not …

javascript vue.js event-handling dom-events vue-events
How can I prevent click on drag?

I am trying to have an element with both a drag and click event. I have read about and tried …

javascript vue.js vuejs2 vue-events