easyai-mfe-demo/remote/pages/contact/index.vue
2024-12-23 13:38:00 +07:00

19 lines
364 B
Vue

<template>
<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>
const count = ref(0)
</script>
<style scoped>
.rmt {
background-color: antiquewhite;
}
</style>