debug fetching global data error page on ssg
This commit is contained in:
11
composables/useFetchGlobalData.js
Normal file
11
composables/useFetchGlobalData.js
Normal file
@@ -0,0 +1,11 @@
|
||||
export const useFetchGlobalData = async () => {
|
||||
const globalData = useState('globalData', () => {})
|
||||
|
||||
await callOnce(async () => {
|
||||
globalData.value = await $fetch(`/api/items/global`)
|
||||
globalData.value = globalData.value.data
|
||||
})
|
||||
return {
|
||||
globalData
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user