Skip to content

Instantly share code, notes, and snippets.

@leorog
Created August 27, 2022 17:21
Show Gist options
  • Select an option

  • Save leorog/3d89100d9b7493bb10c40ce374966d06 to your computer and use it in GitHub Desktop.

Select an option

Save leorog/3d89100d9b7493bb10c40ce374966d06 to your computer and use it in GitHub Desktop.
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.8/dist/vue.js"></script>
<div id="app">
{{ message }}
{{ counter }}
<button v-on:click="counter++"> Click </button>
<button v-on:click="eita"> Eita </button>
</div>
<script>
new Vue({
el: '#app',
methods: {
eita() {
alert("eita");
}
},
data: {
counter: 0,
message: 'Hello Vue.js!'
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment