feat: questions table

This commit is contained in:
Jannat Patel
2024-07-29 19:44:04 +05:30
parent fa774b0db2
commit a450c846a6
9 changed files with 199 additions and 49 deletions

View File

@@ -0,0 +1,30 @@
<template>
<!-- <Dialog
v-model="show"
>
<template>
This is life
</template>
</Dialog> -->
</template>
<script setup>
import { Dialog } from "frappe-ui"
import { computed } from "vue"
const show = defineModel()
const dialogOptions = computed(() => {
return {
title: __(props.title),
size: 'lg',
actions: [
{
label: __('Submit'),
onClick: (close) => {
submitQuestion(close)
},
},
]
}
})
</script>