feat: settings

This commit is contained in:
Jannat Patel
2024-08-05 15:12:45 +05:30
parent eed330662b
commit cdb028c69c
2 changed files with 41 additions and 0 deletions

View 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>