Several questions on StackOverflow (Q1 Q2) offer solutions that do not scale well for filtering a large tree (3000 nested object nodes) using v-treeview and syncing the opened nodes is very slow. I understand there is a way to sync the opened notes using the updateAll function however it is not practical for a large tree. My question is if there is a way to simply sync the open prop to the searched nodes using a custom filter function? The only other way I can think of solving this issue is to essentially implement filtering myself as this answer suggests, but I refuse to believe there is not a simpler more Vuetify way of solving this.