import { reactive } from 'vue'
const store = reactive({ filter: {} })
const useStore1 = () => {
return { store }
}
export { useStore1 }
import { reactive } from 'vue'
const store = reactive({ filter: {} })
const useStore2 = () => {
return { store }
}
export { useStore2 }