Hey, it seems like that object destruction is not supported for refs by vue.
Can you confirm that this example doesn't work?
const { todos, loaded } = useDexieLiveQuery( () => db.todos.toArray().then(todos => ({ todos, loaded: true })), { initialValue: { todos: [], loaded: false } } );