17 lines
364 B
Vue
17 lines
364 B
Vue
<template>
|
|
<div>
|
|
<!-- This page will automatically redirect to the default provider -->
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from 'vue';
|
|
import { useAuth } from '#imports';
|
|
|
|
const { signIn } = useAuth();
|
|
|
|
// Automatically redirect to the default provider when the page loads
|
|
onMounted(() => {
|
|
signIn('default');
|
|
});
|
|
</script> |