import { defineStore } from 'pinia' import { ref } from 'vue' export const useSolutionStore = defineStore('solution', () => { const solutionList = ref([]) const updateSolution = (list: Solution.SolutionItem[]) => { solutionList.value = list } return { solutionList, updateSolution, } })