Nuxt Supabase
Nuxt Supabase
A supa simple wrapper around supabase-js to enable usage and integration within Nuxt.
const supabase = useSupabaseClient() const email = ref('') const signInWithOtp = async () => { await supabase.auth.signInWithOtp({ email: email.value, }) }