This commit is contained in:
2024-11-16 14:41:12 +01:00
parent 6a57f63784
commit d41c876258
12 changed files with 186 additions and 12 deletions
@@ -7,6 +7,13 @@ import { useAlertService } from '@/shared/alert/alert.service';
export default defineComponent({
compatConfig: { MODE: 3 },
name: 'Transaction',
props: {
userAccountId: {
type: [Number, String],
required: false,
default: null,
},
},
setup() {
const transactionService = inject('transactionService', () => new TransactionService());
const alertService = inject('alertService', () => useAlertService(), true);