This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
export default () => {
const { t } = useI18n()
return reactive({
btns: {
send: {
props: {
label: t("submitAndSend")
},
events: {
click: () => {}
}
},
cancel: {
props: {
label: t("cancel"), outlined: true
},
events: {
click: () => {}
}
},
print: {
props: {
label: "Save PDF",
icon: "isax isax-paperclip",
iconPos: "right",
severity: "secondary",
outlined: true,
},
},
save: {
props: {
label: "Save PDF",
icon: "isax isax-direct-inbox",
severity: "secondary",
outlined: true,
},
},
},
})
}