feat: settings
This commit is contained in:
25
frontend/src/components/Modals/Settings.vue
Normal file
25
frontend/src/components/Modals/Settings.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<Dialog
|
||||
v-model="show"
|
||||
:options="{
|
||||
title: __('Settings'),
|
||||
size: 'xl',
|
||||
actions: [
|
||||
{
|
||||
label: 'Save',
|
||||
variant: 'solid',
|
||||
onClick: (close) => {
|
||||
saveSettings(close)
|
||||
},
|
||||
},
|
||||
],
|
||||
}"
|
||||
>
|
||||
<template #body-content> </template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup>
|
||||
import { Dialog } from 'frappe-ui'
|
||||
|
||||
const show = defineModel()
|
||||
</script>
|
||||
Reference in New Issue
Block a user