diff --git a/src/stores/quotations/index.ts b/src/stores/quotations/index.ts index 0297be9f..1d9f83d9 100644 --- a/src/stores/quotations/index.ts +++ b/src/stores/quotations/index.ts @@ -6,7 +6,7 @@ import { api } from 'src/boot/axios'; import { Quotation, QuotationFull, QuotationPayload } from './types'; import { PaginationResult } from 'src/types'; -export const quotationStore = defineStore('quotation-store', () => { +export const useQuotationStore = defineStore('quotation-store', () => { const data = ref([]); const page = ref(1); const pageMax = ref(1);