Newer
Older
FirstProject / imports / ui / components / Hello.vue
@Motoki Miura Motoki Miura on 11 Oct 2021 362 bytes first commit
<template>
  <div>
    <button @click="increment">Click Me</button>
    <p>You've pressed the button {{counter}} times.</p>
  </div>
</template>

<script>
export default {
  data() {
    return {
      counter: 0,
    }
  },
  methods: {
    increment() {
      this.counter += 1
    }
  },
}
</script>

<style scoped>
  p {
    font-family: serif;
  }
</style>