feat: new web page table

This commit is contained in:
Jannat Patel
2024-05-30 11:01:30 +05:30
parent 1e69ff7de8
commit 844f4b5e8d
2 changed files with 66 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
<template>
<Dialog
v-model="show"
class="text-base"
:options="{
title: __('Apply for this job'),
size: 'lg',
actions: [
{
label: 'Submit',
variant: 'solid',
onClick: (close) => {
submitResume(close)
},
},
],
}"
>
<template #body-content> </template>
</Dialog>
</template>
<script setup>
import { Dialog } from 'frappe-ui'
</script>