// app/composables/useVisitTracker.ts import { ref } from 'vue'; // This is a simple, client-side, non-persisted state to ensure the // daily visit API call is only made once per application lifecycle. const visitCalled = ref(false); export function useVisitTracker() { return { visitCalled, }; }