© 2026 Hedgehog Software, LLC
src/runtime/composables/states.ts
import { useState } from "#imports" export const useAuth = () => useState<boolean | null>("auth", () => null)
any
Ref<boolean | null>