feat(LaravelEcho): Add support for Laravel Echo

This commit is contained in:
2023-11-09 23:49:30 +01:00
parent aac376bb56
commit 85fb966491
7 changed files with 80 additions and 0 deletions

4
composables/useEcho.ts Normal file
View File

@@ -0,0 +1,4 @@
export default function useEcho() {
const { $echo } = useNuxtApp()
return $echo
}