Files
afrobiz/pages/index.vue
2023-01-28 11:16:32 +11:00

16 lines
376 B
Vue

<script setup lang="ts">
const user = useSupabaseUser()
const supabase = useSupabaseAuthClient();
watchEffect(() => {
if (user.value) {
navigateTo('/dashboard', {replace: true})
}
})
</script>
<template>
<div>
<h3>Index</h3>
<button @click="supabase.auth.signInWithOAuth({provider: 'google'})">Sign In with Google</button>
</div>
</template>