fenghe-auction/app/stores/public/index.js

9 lines
216 B
JavaScript
Raw Normal View History

2025-04-10 07:47:40 +00:00
import {createGlobalState, useLocalStorage} from '@vueuse/core'
export const publicStore = createGlobalState(() => {
const auctionData=useLocalStorage('auctionData',{})
return {
auctionData
}
})