0

I have a image and when you hover it, a tool-tip will appear with a Edit, and Delete Button.

<div class="paysmart-tooltip hide">
  <p> Click <a :href="editPendingInactive(student)">here</a> to Edit Request.</p>
  <p> Click <button @click.native="deletePendingInactiveRequest(student)">here</button> to Cancel Request.

@click.native"deletePendingInactiveRequest(student)" is not firing
1
  • nothing complex here. should work fine. are you stopping event propagation somewhere? Commented Jan 2, 2019 at 10:12

1 Answer 1

1

.native modifiers only work on components, not on normal HTML elements. Remove it.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.