Skip to content

Instantly share code, notes, and snippets.

View henriksjodahl's full-sized avatar
🤡

Henrik Sjödahl henriksjodahl

🤡
View GitHub Profile
@wobsoriano
wobsoriano / auth.js
Last active February 29, 2024 07:37
nuxtServerInit like implementation for Pinia
import { defineStore } from 'pinia'
export const useAuthStore = defineStore({
id: 'auth',
state: () => ({
isAuthenticated: false,
user: null
}),
actions: {
async nuxtServerInit() {