Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 430 Bytes

20.05-event.md

File metadata and controls

23 lines (20 loc) · 430 Bytes
layout title label permalink nav_order parent
page
Bind an Event to a Web-Component
Binding events
/usage-web-components/events/
5
Usage

@ Directive for binding Events

<template>
  <button @click="sayHi" name="the button">click</button>

<script>
  export default class extends Lego {
    sayHi(event) {
      alert(`You clicked to says hi! 👋🏼`)
    }
  }
</script>