fix: move store inside to avoid possible error on import
This commit is contained in:
parent
5c8d783fe1
commit
e581556e78
1 changed files with 2 additions and 2 deletions
|
|
@ -6,9 +6,9 @@ import { QuotationPayload, EmployeeWorker } from 'src/stores/quotations/types';
|
||||||
|
|
||||||
import { useQuotationStore } from 'stores/quotations';
|
import { useQuotationStore } from 'stores/quotations';
|
||||||
|
|
||||||
const quotationStore = useQuotationStore();
|
|
||||||
|
|
||||||
export const useQuotationForm = defineStore('form-quotation', () => {
|
export const useQuotationForm = defineStore('form-quotation', () => {
|
||||||
|
const quotationStore = useQuotationStore();
|
||||||
|
|
||||||
const defaultFormData: QuotationPayload = {
|
const defaultFormData: QuotationPayload = {
|
||||||
service: [
|
service: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue