Files
mohadese namavar ec84dfd222 init git
2024-06-16 00:22:14 +04:30

22 lines
652 B
JavaScript

import ProductDialogShare from '../components/product/dialog/Share.vue'
export default () => {
const { dialog } = inject('service')
return reactive({
options: {
search: {
props: {
icon: "isax isax-search-normal-1", severity: "secondary", text: true, rounded: true,
},
click: () => dialog.show(ProductDialogShare)
},
share: {
props: {
icon: 'isax isax-share', severity: "secondary", text: true, rounded: true,
},
click: () => { }
},
}
})
}