* 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
237 B
Vue
11 lines
237 B
Vue
<script setup lang="ts">
|
|
import FormsLayout from './layouts/FormsLayout.vue'
|
|
import NotificationsForm from './components/NotificationsForm.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<FormsLayout>
|
|
<NotificationsForm />
|
|
</FormsLayout>
|
|
</template>
|