init git
This commit is contained in:
@@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user