mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
15 lines
315 B
Vue
15 lines
315 B
Vue
<template>
|
|
<NumberCustomizer
|
|
type="estimate"
|
|
:type-store="estimateStore"
|
|
default-series="EST"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useEstimateStore } from '@/scripts/admin/stores/estimate'
|
|
import NumberCustomizer from '../NumberCustomizer.vue'
|
|
|
|
const estimateStore = useEstimateStore()
|
|
</script>
|