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