Files
FileSharing/src/composables/useApp.ts
2026-05-09 18:09:57 +00:00

9 lines
212 B
TypeScript

import { inject } from 'vue'
import type { App } from '@/services/app'
export function useApp(): App {
const app = inject<App>('app')
if (!app) throw new Error('App not properly initialized')
return app
}