mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 20:16:04 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? This PR is the final PR for Supabase UI Vue&Nuxt with the Realtime Chat and Infinite Query. ## Additional context Initiative by Terry <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes * **New Features** * Realtime Chat now available for Vue and Nuxt.js frameworks with full documentation and composables * Added Infinite Query composable for Vue with comprehensive guides * **Documentation** * New Realtime Chat documentation pages for Vue and Nuxt.js * New Infinite Query documentation for Vue * Updated framework support in documentation navigation <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Terry Sutton <saltcod@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
661 B
TypeScript
24 lines
661 B
TypeScript
import { clients } from './clients'
|
|
import { currentUserAvatar } from './current-user-avatar'
|
|
import { dropzone } from './dropzone'
|
|
import { infiniteQuery } from './infinite-query'
|
|
import { passwordBasedAuth } from './password-based-auth'
|
|
import { realtimeAvatarStack } from './realtime-avatar-stack'
|
|
import { realtimeChat } from './realtime-chat'
|
|
import { realtimeCursor } from './realtime-cursor'
|
|
import { socialAuth } from './social-auth'
|
|
|
|
const blocks = [
|
|
...clients,
|
|
...passwordBasedAuth,
|
|
...socialAuth,
|
|
...dropzone,
|
|
...realtimeCursor,
|
|
...currentUserAvatar,
|
|
...realtimeAvatarStack,
|
|
...realtimeChat,
|
|
...infiniteQuery,
|
|
]
|
|
|
|
export { blocks }
|