I'm curious if there's a way to disable dynamic binding for a specific instance of an attribute that I'm displaying.
Imagine I have the following code, utilizing two-way binding:
this.$children[0].$data.hits
In this scenario, I have a vacation website where I want to show the total number of hits obtained. However, these hits are also updated dynamically when users perform searches. I need one instance of this data to remain static and display the initial count without being affected by user searches.
Is it achievable easily or should I create a separate data attribute within my components?