shadcn-vue/apps/www/src/examples/forms/Notifications.vue
Ahmed Mayara 3636e992c3
feat: add profile section in forms example (#44)
* 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
2023-09-13 09:26:12 +08:00

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>