I'm struggling to grasp the concept of Vue's Event Modifiers. The documentation suggests that adding this simple code should do the trick:
<!-- the click event's propagation will be stopped -->
<a v-on:click.stop="doThis"></a>
Here is my attempt at implementing this in my pug code:
b-dropdown(text="Actions")
b-dropdown-item
b-form(inline)
.row
.col
b-input(@click.stop='' placeholder="#123")
b-button(:href='printCheck' variant="primary") Print Check
Although it seems straightforward, the functionality is not working as expected. If you require additional details, please let me know. Feel free to adjust the title accordingly; I am uncertain if this issue pertains to vue, bootstrap-vue, or JavaScript.
Thank you for your time,
Kevin