Hello Content
- Publish
Hello Content
こんにちは
section1
ref
import { ref, computed } from 'vue'
const message = ref('Hello')
section2
bind to ref
<script setup>
import { ref } from 'vue'
// Reactive state.
const count = ref(0)
const increment = () => {
count.value++
}
</script>
<template>
<button @click="increment">Count is: {{ count }}</button>
</template>
section3
hoge