Skip to content

Instantly share code, notes, and snippets.

@marciofmjr
Last active June 30, 2020 00:43
Show Gist options
  • Save marciofmjr/82f251704c7fc6d34dced24c587e3643 to your computer and use it in GitHub Desktop.
Save marciofmjr/82f251704c7fc6d34dced24c587e3643 to your computer and use it in GitHub Desktop.
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment