Create a Simplified Version of Vue 3 Reactivity System
Vue 3 is already released at the end of last year. In this article, we will look into deeper the reactivity system used in Vue 3 and create a simplified version of it using the same technology.
Vue 3 is already released at the end of last year. In this article, we will look into deeper the reactivity system used in Vue 3 and create a simplified version of it using the same technology.
Imagine when we remember a moment from a YouTube video but forgot at what time it occurs. What if we could search any keywords from any YouTube video through its closed captions text?
$refs is one of the tricky features to use in Vue.js. To use it, we have to do it at the right time and the right place. Even if we already did, sometimes the value is still undefined.
Learning CSS Flexbox has never been so interactive, every detail of Flexbox properties can be played with full flexibility. Learn for yourself and find the answers yourself.
In the previous part, we have created our own reactivity system. But it still lacks a feature, it can only do one task at a time. Now come to the second part to solve that problem.