11 lines
219 B
Vue
11 lines
219 B
Vue
<script setup lang="ts">
|
|
import AccountForm from './components/AccountForm.vue'
|
|
import FormsLayout from './layouts/FormsLayout.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<FormsLayout>
|
|
<AccountForm />
|
|
</FormsLayout>
|
|
</template>
|