Skip to content

Instantly share code, notes, and snippets.

@Comandeer
Created July 7, 2018 20:47
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 Comandeer/dd6065fc071519333d977badfe8b01aa to your computer and use it in GitHub Desktop.
Save Comandeer/dd6065fc071519333d977badfe8b01aa to your computer and use it in GitHub Desktop.
Component's script
<template>
[…]
</template>
<style>
[…]
</style>
<script>
export default { // 1
name: 'hello-world', // 2
onClick() { // 3
alert( `Don't touch me!` );
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment