Skip to content

Instantly share code, notes, and snippets.

@Cst2989
Created September 6, 2022 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cst2989/58ae154ba9de1f76bd96cf41c96fd606 to your computer and use it in GitHub Desktop.
Save Cst2989/58ae154ba9de1f76bd96cf41c96fd606 to your computer and use it in GitHub Desktop.
ButtonComponent
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({
name: 'ButtonComponent',
methods: {
handleClick() {
alert('Hi!')
}
},
})
</script>
<template>
<button @click="handleClick" class="button">
Click Me!
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment