From 8e44ac3318465c1116e720d8c54d4f721e09b979 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Tue, 1 Oct 2024 15:02:18 +0700 Subject: [PATCH] refactor: add form.ts of quotation --- src/pages/05_quotation/form.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/pages/05_quotation/form.ts diff --git a/src/pages/05_quotation/form.ts b/src/pages/05_quotation/form.ts new file mode 100644 index 00000000..33aa1157 --- /dev/null +++ b/src/pages/05_quotation/form.ts @@ -0,0 +1,5 @@ +import { defineStore } from 'pinia'; + +export const useQuotationForm = defineStore('form-quotation', () => { + return {}; +});