tmp fix reactive

This commit is contained in:
antony
2024-12-23 13:38:00 +07:00
parent e74fce0aa9
commit 8bacb8406e
7 changed files with 65 additions and 33 deletions
+7 -1
View File
@@ -2,9 +2,15 @@
<div class="rmt">
<h1>rmt/pages/contact/index.vue</h1>
<div>Contact index</div>
<div>
count: {{ count }}
<button type="button" @click="count++">increment+</button>
</div>
</div>
</template>
<script setup></script>
<script setup>
const count = ref(0)
</script>
<style scoped>
.rmt {
background-color: antiquewhite;