Why this matters
Arrow functions inherit the `this` context from their surrounding scope (lexical `this`). This is crucial in Vue components, as it avoids the need for `_this = this` or `.bind(this)` when accessing the component instance (`this`) inside callbacks like `setTimeout`, `setInterval`, or asynchronous operations within methods/hooks.