-
Hello @sandros94, Is this compatible with Nuxt 3? And also I'll like to know if this module support Live queries? Thank you so much for your effort! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Thanks! 🙏
Yes it is. There has been an issue while publishing that page the first time and you may have seen a cached bersion.
It does! The A short example would be <template>
<div>
{{ data }}
</div>
</template>
<script setup>
const { data, live } = useSurrealWS()
live('scores') // assuming a `scores` table
</script> |
Beta Was this translation helpful? Give feedback.
Thanks! 🙏
Yes it is. There has been an issue while publishing that page the first time and you may have seen a cached bersion.
It does! The
useSurrealWS
composable is all about real-time connection via websockets.A short example would be