- <template>
- <section class="shadowbox">
- <h2>Register</h2>
- <account :error="''" @submit="create" />
- </section>
- </template>
-
- <script setup>
- import { ref } from "vue"
- import Account from "./account.vue"
-
- function create(user) {
- console.log(user)
- }
- </script>
-
- <style scoped>
- section {
- max-width: 350px;
- margin: auto;
- }
- </style>
|