Improve performance on large lists in Vue
Here’s a nice little trick using Object.freeze
to improve the app performance when working with large lists, where it is not necessary to actually have reactivity for each of the list elements. Think a list of users where you won’t be directly mutating each of those users.