mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-30 05:01:10 -04:00
16 lines
304 B
Vue
16 lines
304 B
Vue
<template>
|
|
<NumberCustomizer
|
|
type="payment"
|
|
:type-store="paymentStore"
|
|
default-series="PAY"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { usePaymentStore } from '@/scripts/stores/payment'
|
|
import NumberCustomizer from '../NumberCustomizer.vue'
|
|
|
|
const paymentStore = usePaymentStore()
|
|
</script>
|
|
|