Files
ikea/resources/js/Pages/IkeaExchange.vue
Jaroslav Drzik 73de3a69b9
Some checks are pending
deploy / deploy (push) Waiting to run
Basic Menu
2024-01-01 11:14:01 +01:00

16 lines
412 B
Vue

<script setup>
import { getCurrentInstance, ref, onMounted, onUnmounted, nextTick, computed } from 'vue';
import GuestLayout from '../Layouts/GuestLayout.vue';
import { useForm } from '@inertiajs/inertia-vue3'
import axios from 'axios';
</script>
<template>
<GuestLayout>
<div class="flex flex-wrap gap-2 justify-center align-middle ">
<h1>Exchange</h1>
</div>
</GuestLayout>
</template>