From 02b2f6aa5c3e82c00c8bd88d7a7f7dd3b28bcfd1 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Mon, 30 Sep 2024 14:16:16 +0700 Subject: [PATCH] fix: store name --- src/stores/quotations/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);