Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to use this with pinia? #421

Open
jlemonz opened this issue Oct 1, 2024 · 0 comments
Open

How to use this with pinia? #421

jlemonz opened this issue Oct 1, 2024 · 0 comments
Labels
question Further information is requested

Comments

@jlemonz
Copy link

jlemonz commented Oct 1, 2024

Hi,

How can i use this with pinia?
I tried this code. But this gives errors that it cannot fetch when i try to login.

`// stores/auth.js

import { defineStore } from 'pinia';
import { ref, computed } from 'vue';
import { useSupabaseClient } from '#imports';

export const useAuthStore = defineStore('auth', () => {
const supabase = useSupabaseClient();
const user = ref(null);
const error = ref(null);

const isAuthenticated = computed(() => !!user.value);

const signIn = async (email, password) => {
try {
const { data, error: signInError } = await supabase.auth.signInWithPassword({
email,
password,
});
if (signInError) throw signInError;
user.value = data.user;
} catch (err) {
error.value = err.message;
}
};

return { user, error, isAuthenticated, signIn };
});
`

@jlemonz jlemonz added the question Further information is requested label Oct 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant