9 lines
195 B
Vue
9 lines
195 B
Vue
<template>
|
|
<div @click="auth.googleLogin()">Login with Google</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useAuthStore } from 'src/stores/auth';
|
|
const auth = useAuthStore();
|
|
</script>
|