2025-01-13 12:59:25 +00:00
|
|
|
import { createGlobalState } from '@vueuse/core'
|
|
|
|
export const homeStore = createGlobalState(() => {
|
2025-01-17 08:56:13 +00:00
|
|
|
const actionDetails=ref({})
|
2025-01-15 08:57:26 +00:00
|
|
|
const fullLive=ref(false)
|
2025-01-17 08:56:13 +00:00
|
|
|
const itemList = ref([{
|
2025-01-17 02:19:01 +00:00
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/637d95b4-2ae9-4a74-bd60-a3a9d2ca2ca0.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: 'RMB 10,000',
|
|
|
|
}, {
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/f7b65e23-ce21-41b4-8e58-9e6dc6950727.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: '',
|
|
|
|
}, {
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/41eceb23-d168-4049-ae8e-48c5328b192f.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: '',
|
|
|
|
}, {
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/25c3f03c-9e0b-456b-963f-79b3d812c89a.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: '',
|
|
|
|
}, {
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/25c3f03c-9e0b-456b-963f-79b3d812c89a.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: '',
|
|
|
|
}, {
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/25c3f03c-9e0b-456b-963f-79b3d812c89a.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: '',
|
|
|
|
},{
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/637d95b4-2ae9-4a74-bd60-a3a9d2ca2ca0.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: 'RMB 10,000',
|
|
|
|
},{
|
|
|
|
image: 'https://e-cdn.fontree.cn/fonchain-main/prod/file/default/setting/637d95b4-2ae9-4a74-bd60-a3a9d2ca2ca0.png',
|
|
|
|
title: '张天赐 | 日出而作,日落而息',
|
|
|
|
startingPrice: 'RMB 1,000',
|
|
|
|
transactionPrice: 'RMB 10,000',
|
|
|
|
}])
|
2025-01-17 08:56:13 +00:00
|
|
|
|
2025-01-13 12:59:25 +00:00
|
|
|
return{
|
2025-01-17 08:56:13 +00:00
|
|
|
actionDetails,
|
|
|
|
itemList,
|
2025-01-13 12:59:25 +00:00
|
|
|
fullLive
|
|
|
|
}
|
|
|
|
})
|