tmp fix reactive
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user