3👍
As Fatur said above, typically with an open-game style like this where you join a room and new users can join and leave, you would want to setup a web connection (web socket) to be constantly aware of who’s in the room.
Since you’re using the Vuetify framework already, you could probably add Vue Native Websocket to your project pretty easily. I’ve never used it, but it looks like it’s a solid project that’s updated on a pretty consistent basis.
The only alternative to this that I can think of immediately would be: every time the user clicks the button to gift a random user, hit the database or API for all of the current users in the room. But again, users could enter the room while you’re making this request, and I don’t really recommend this. Additionally, this would hammer your database or API pretty hard if you have multiple rooms, which is another reason I don’t recommend this.