Vue 2 walked an object at creation and replaced every property with a getter and setter, which meant properties added later were not reactive and array index assignment…
The options API organises a component by kind — data here, methods there, watchers below — so one concern is spread across four sections and two concerns are…
A modal rendered inside a component is inside that component’s stacking context, so a parent with overflow: hidden or a transform clips it and no z-index helps. The…
2.6 introduced v-slot, unifying named and scoped slots under one directive and deprecating the two attributes that came before it. Both syntaxes work in 2.6, which makes this…
Vue 2.5 improved its TypeScript declarations enough that a component can be written without a decorator library, which is the first release where the combination is worth trying…
Vue templates cover almost everything and become awkward at exactly one point: rendering a different element depending on a prop, which turns into a chain of v-if blocks…