mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			310 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			310 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <NumberCustomizer
 | 
						|
    type="estimate"
 | 
						|
    :type-store="estimateStore"
 | 
						|
    default-series="EST"
 | 
						|
  />
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
import { useEstimateStore } from '@/scripts/stores/estimate'
 | 
						|
import NumberCustomizer from '../NumberCustomizer.vue'
 | 
						|
 | 
						|
const estimateStore = useEstimateStore()
 | 
						|
</script>
 | 
						|
 |