Vue SFC Playground

PHOTO EMBED

Sat Jan 14 2023 18:41:22 GMT+0000 (Coordinated Universal Time)

Saved by @Juan #undefined

<script>

export default {

  data() {

    return {

      count: 1

    }

  },

​

  // `mounted` is a lifecycle hook which we will explain later

  mounted() {

    // `this` refers to the component instance.

    console.log(this.count) // => 1

​

    // data can be mutated as well

    this.count = 2

  }

}

</script>

​

<template>

  Count is: {{ count }}

</template>
content_copyCOPY

https://sfc.vuejs.org/#eNp9UdFqwzAM/BXhpxVah+0xtIWx3/BDXUdp3Dl2sJVmI+TfJydtChsMDPZZutNJGsV718lbj6IU+2Si7eioPH51IRJUWOveEYzKA1Sa9MtmeQNEpD76BwIwofdUwuuCp3xNW+XzXRRwanMYqxPYBBqcrdF8G4fQhPAJQ2NNAwPCYJ0Dru209eA0Ycz8O/dZOwtSY9OJXdQYE1AAapA9tF3w6AmsT6S9QbkQTPApOJQuXF4yUc5uN1nocMyeV93cJBjt4YzQ9sQWKtCJvTm35DzpcIC3uU3l+eyLdXgMCFtugpARwMecbVMJ47jMCaaZsWaJrbBsPdKu1Z28puB5G3Oz6h5ISjB9saAErytjJRqiLpVFkWqTd3hNMsRLwS8ZuYxtUWJqd+cYhoSRhZXgnawaBX/eMO4i+gojD/sfzV+pf3QfkxDTD7THyYc