ExportedComponent.pupper 297 B

1234567891011
  1. template
  2. div
  3. |This component was exported and loaded by another component!
  4. div.my-3
  5. a.text-primary(href="#", @click="onClickLink($event)")="Testing a link with an event"
  6. implementation
  7. #onClickLink(e)
  8. e.preventDefault();
  9. alert("Hello world!");