Skip to content

Instantly share code, notes, and snippets.

@lee-chase
Last active February 20, 2019 12:01
Show Gist options
  • Save lee-chase/9a53507b57c547b948084bf2fa4c4b64 to your computer and use it in GitHub Desktop.
Save lee-chase/9a53507b57c547b948084bf2fa4c4b64 to your computer and use it in GitHub Desktop.
@carbon/vue example/src/components/HelloWorld.js
<template>
<cv-button @click="onClick">Hello @carbon/vue</cv-button>
</template>
<script>
export default {
name: 'HelloWorld',
methods: {
onClick() {
alert('Hello @carbon/vue');
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment