Tagged “react”
-
TIL How to implement two-way binding without a framework javascript vue codepen react data
One of the reasons we use React or Vue is because of that sweet sweet two-way binding. It's the automatic syncing of data between the model (data) and the view (UI) in both directions. Any changes made to the data will automatically update the view, and any changes made to the view will automatically update the data.
-
TIL How a virtual dom works virtualdom dom react vue
Then, the Virtual dom compares diffs from old virtual dom, and then reapplies it. We apply the minimal amount of changes.
-
TIL Compound Components in React react kentdobbs components
Compound components, where you combine parent/child data.
-
TIL using code-splitting to improve your First Contentful Paint (FCP) score javascript seo esmodules webpack vue react frameworks
Code splitting is a technique where you send only the necessary modules to the user in the beginning.
See all tags.