<div id="root">
<button v-on:click="addName">Click me</button>
<button @click="addName">Click me</button>
</div>
<script srv="http://cdn.vue.js"></script>
<script>
new Vue({
el: '#root',
data: {
newName: ''
},
methods: {
addName() {
this.newName = 'New name here..'
}
}
})
</script>
Last active
June 30, 2020 00:43
-
-
Save marciofmjr/82f251704c7fc6d34dced24c587e3643 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment