zammad/app/frontend/shared/composables/useReactiveNow.ts
2026-01-02 15:41:09 +02:00

9 lines
216 B
TypeScript

// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
import { useNow } from '@vueuse/core'
const reactiveNow = useNow({
interval: 1000,
})
export const useReactiveNow = () => reactiveNow