Create a Simplified Version of Vue 3 Reactivity System

36 min read

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.

Create a Simplified Version of Vue 3 Reactivity System

How to Safely Access Vue Refs without Getting Undefined?

9 min read

$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.

How to Safely Access Vue Refs without Getting Undefined?

Learn CSS Flexbox in Interactive Way

1 min read

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.

Learn CSS Flexbox in Interactive Way

Create a Simplified Version of Vue.js Reactivity System - Part 2

16 min read

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.

Create a Simplified Version of Vue.js Reactivity System - Part 2