등록신청 view

This commit is contained in:
yoon 2025-01-17 11:00:32 +09:00
parent 5315989232
commit c6e4cc9089

View File

@ -0,0 +1,17 @@
<template>
<div class="d-flex justify-content-center align-items-center">
<div class="container rounded bg-white my-10 py-10" style="max-width: 500px">
<RegisterForm @submit="handleSubmit" />
</div>
</div>
</template>
<script setup>
import RegisterForm from '@c/user/RegisterForm.vue';
const handleSubmit = async (formData) => {
console.log('Register');
};
</script>
<style></style>