michaeldrotar
michaeldrotar
What's the advantage of this over having separate components that are just a `` section? I don't understand the cognitive costs referenced in the description as I generally find smaller,...
Understood this approach would be optional, I'm just struggling to understand the use case -- to understand what problem it's solving. The idea of simply separating one's layout pieces is...
@IlCallo is this sort of a way to separate functionality and presentation? I'm not familiar with Angular but that's the gist I'm getting from the guide's `` example.. that the...
The composition API solves a need that doesn't have a great solution currently.. there are half measures like mixins and component composition, but they have major drawbacks. I wouldn't argue...
I think that's a great point, and I think most people struggle with that at some point... I've definitely been at both extremes during my career -- either ending up...
Seems reasonable.. to toss another slight deviation into the ring, I prefer something like this currently.. reads well, highlights well, digests easily imo ```jsx ``` There's [another RFC floating around](https://github.com/vuejs/rfcs/pull/81)...
I was also thinking what about a `@focus.outside`.. and for that matter, would `@mouseover.outside` or `@keydown.outside` make sense... are there any events that don't make sense? For focus/blur specifically, there's...
This is interesting.. I've never used `scoped` and instead rely on BEM-like naming conventions to avoid collisions.. this affords me the flexibility for a parent component to tweak its children's...
> I don't know if its currently available or if it's doable but it would be great to reactively use CSS variables in the template. > > ``` > >...
I don't think this would work... taking the example further: ```js export default { name: 'Knight', props: { name: { type: String, default: props => props.isKnight ? 'Sir Lancelot' :...