* feat: add profile section in forms example * feat: add account and appearance sections in forms example * feat: add notifications and display sections in forms example * fix: fix checked prop in display form
11 lines
219 B
Vue
11 lines
219 B
Vue
<script setup lang="ts">
|
|
import FormsLayout from './layouts/FormsLayout.vue'
|
|
import ProfileForm from './components/ProfileForm.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<FormsLayout>
|
|
<ProfileForm />
|
|
</FormsLayout>
|
|
</template>
|