useFetch undefined computed
How do I handle dependent values that may be undefined when using useFetch? For instance:
Initially it will try to get /api/users/undefined
Initially it will try to get /api/users/undefined
const { data: session } = await useLazyFetch('/api/session')
const { data: me } = await useLazyFetch(`/api/users/${session.value.userId}`)