Vue.js : How can I do native events handling of child component from parent component

Vue.js : How can I do native events handling of child component from parent component



I have a component that wraps an anchor:


Vue.component('wrapper-link',
template : `
<div>
<a href="xxx" v-on="$listeners">text link</a>
<div>
`
);



I'm using it like this in my app:



template:


<div id="app">
<wrapper-link @click.stop="onClickEvent"></wrapper-link>
</div>



script:


let app = new Vue(
el: '#app',
methods:
onClickEvent()
console.log('clicked');


)



I was expecting that after clicking text link, the native click-event would be blocked and the console would log 'clicked'; but none of that happened. The native click event worked (navigation occurred).


text link


click



I know of event.preventDefault(), but I want to use Vue's event modifiers.


event.preventDefault()




1 Answer
1



You used the .stop event modifier (calls event.stopImmediatePropagation()), but the behavior you're seeking is accomplished with .prevent (calls event.preventDefault()):


.stop


event.stopImmediatePropagation()


.prevent


event.preventDefault()


<wrapper-link @click.prevent="onClickEvent" />




Vue.component('wrapper-link',
template: `
<div>
<a href="http://google.com"
target="_blank"
v-on="$listeners">Google</a>
</div>
`
);

new Vue(
el: '#app',
methods:
onClick(e)
console.log('click');


)


<script src="https://unpkg.com/vue@2.5.17"></script>

<div id="app">
<wrapper-link @click.prevent="onClick" />
</div>



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Some of your past answers have not been well-received, and you're in danger of being blocked from answering.



Please pay close attention to the following guidance:



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)