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