(Posts filtered by intermediate.)
Understanding Vue.js Single-File Components (SFCs)
SFCs enable us to create sharable plugins, facilitating the sharing of code, a first-class practice in OSS since fixes or features that are pushed to a single codebase can easily be pulled into all dependents.
March 29, 2023Vue.js Computed Properties in Depth
Computed properties will only re-evaluate when one of their dependencies have changed. This is an important characteristic as it helps save on physical resources, especially when running complex expressions that require a lot of computations.
March 28, 2022