Created
August 27, 2022 17:21
-
-
Save leorog/3d89100d9b7493bb10c40ce374966d06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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