feat: add links
This commit is contained in:
parent
5e7ac295af
commit
68aca2f93d
@ -1,10 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="rmt2">
|
||||||
<h1>rmt/pages/contact/properties.vue</h1>
|
<h1>rmt/pages/contact/properties.vue</h1>
|
||||||
<div>Contact prop</div>
|
<div>Contact prop</div>
|
||||||
<div>
|
<div>
|
||||||
<button type="button" @click="handleClick">Click: {{ counter }}</button>
|
<button type="button" @click="handleClick">Click: {{ counter }}</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="links">
|
||||||
|
<NuxtLink to="/">Go to home</NuxtLink>
|
||||||
|
<NuxtLink to="/about">About</NuxtLink>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
@ -18,3 +22,13 @@ definePageMeta({
|
|||||||
name: "contact-properties"
|
name: "contact-properties"
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.rmt2 {
|
||||||
|
background: pink;
|
||||||
|
}
|
||||||
|
.links {
|
||||||
|
display: flex;
|
||||||
|
gap: 2rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user