Skip to content

Commit 284b1f0

Browse files
committed
chore: log in playground
1 parent 74b9e3a commit 284b1f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/nuxt/playground/pages/firestore-useDocument.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ const { data: config, promise } = useDocument(configRef, { wait: true })
1515
onMounted(() => {
1616
promise.value.then((data) => {
1717
if (process.client) {
18-
console.log(data)
18+
console.log('promise resolved', toRaw(data))
1919
}
2020
isDoneFetching.value = true
2121
})
2222
2323
usePendingPromises().then((data) => {
2424
if (process.client) {
25-
console.log(data)
25+
console.log('pending promise resolved', toRaw(data))
2626
}
2727
isAllDoneFetching.value = true
2828
})

0 commit comments

Comments
 (0)