YCM Jason

Results 54 comments of YCM Jason

well i can but that would be a work around because comment node is not supported. it doesn't make sense to add a wrapper conceptually. i think we should be...

Well. In the vue test util, when you mount a component, the "wrapper object" has an `element` property which points to the root element. The root element would point to...

I digged into the code a bit to find out that on ios, it is assumed that you wish the title to be centered. (see [here]( https://github.com/callstack/react-native-paper/blob/main/src/components/Appbar/AppbarHeader.tsx#L97)) If you set...

What ideas you have in mind? Is the goal of this to split template into multiple parts within the same file? If so, I think it is an interesting idea!...

I really like the idea of using functional component. However, Vue 3 is going to remove support for `` (see [here](https://github.com/vuejs/rfcs/blob/functional-async-api-change/active-rfcs/0000-functional-async-api-change.md#detailed-design)), so it doesn't look like to me that ``...

@Akryum but would this mean that, if vue team decided to go down this route, that each named template would create a new instance of vue component?

But I think Vue 3 component will be very cheap to create if they are template only? Combining with @Akryum's suggestion on using [implicit props](https://github.com/vuejs/rfcs/pull/25), we might be able to...

@michaeldrotar Sometimes the smaller parts of a large component does not make sense on its own. So it would be nice if those smaller parts could be local to the...

True! It can be done in user land and is pretty simple to do so. I guess you can do with just `ref` + `watch` + `readonly`. ```ts const invalidableComputed...