16 lines
412 B
Vue
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> |