1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 22:26:48 +01:00
elk/composables/masto/masto.ts
2023-01-07 02:43:49 +08:00

12 lines
348 B
TypeScript

import type { ElkMasto } from '~/types'
export const useMasto = () => useNuxtApp().$masto as ElkMasto
export const isMastoInitialised = computed(() => process.client && useMasto().loggedIn.value)
export const onMastoInit = (cb: () => unknown) => {
watchOnce(isMastoInitialised, () => {
cb()
}, { immediate: isMastoInitialised.value })
}