import { ref, computed } from 'vue' import { defineStore } from 'pinia' export const useIntention = defineStore('formStore', () => { const repayPlanData = ref({}) const contractId = ref('') const invoiceList = ref([]) return { repayPlanData, contractId, invoiceList} })