setup proxy for dev
This commit is contained in:
@@ -2,10 +2,19 @@
|
||||
<div>
|
||||
<h1>rmt/pages/contact/properties.vue</h1>
|
||||
<div>Contact prop</div>
|
||||
<div>
|
||||
<button type="button" @click="handleClick">Click: {{ counter }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
const counter = ref(0)
|
||||
|
||||
const handleClick = () => {
|
||||
counter.value += 2
|
||||
}
|
||||
|
||||
definePageMeta({
|
||||
name: "contact1"
|
||||
name: "contact-properties"
|
||||
})
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user