Best Practices for Vue Reactivity with Realm

Hello - I’m trying to prototype out a simple application to determine if Vue and Realm can play nice together (within an Electron app). I would love to know if there are any suggested ways to handle reactivity with Realm objects.

So far, I’ve found that if a Realm object updates, it won’t trigger a Vue component refresh. A solution for this would be to create my own objects that match the Realm data and use change listeners on the realm collections to update those objects, which would be reactive. However, that’s basically creating an ORM, which I understand Realm is designed to avoid. I’m hoping someone here has some tricks.

Thank you!
Sam