6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
|
|
import { defineStore } from 'pinia';
|
||
|
|
|
||
|
|
export const useQuotationForm = defineStore('form-quotation', () => {
|
||
|
|
return {};
|
||
|
|
});
|