Polarcraft/web/pages/map.vue

14 lines
251 B
Vue
Raw Normal View History

2023-05-11 19:46:18 +02:00
<template>
<div class="-mx-10 h-full">
<iframe src="https://squaremap-demo.jpenilla.xyz/" class="h-full w-full" />
</div>
</template>
<script setup>
definePageMeta({
middleware: ["auth"]
})
2023-05-12 14:24:28 +02:00
useHead({ title: 'Map | Polarcraft' })
2023-05-11 19:46:18 +02:00
</script>