Thorsten Lünborg

Results 352 comments of Thorsten Lünborg
trafficstars

@skirtles-code I think I'd be in favor of reflecting this current state of affairs in the docs, given that the workaround that I proposed to them is still in concideration...

To be sure, is your issue here that people might forget to 1. not use `reacive()` on such objects in the first place and 2. use `markRaw()` on such an...

We might need to explain this is big red letters in the docs though 😜

@ docs team: transferred as a placeholder that we should likely document this a a case where order of directives has an influence on behavior.

@berzi The [API Dcos for script-setup](https://v3.vuejs.org/api/sfc-script-setup.html#top-level-await) tell you it only works when nested in a Suspense component - like using `await` in a normal setup function.

@Blakelist7 Sorry for having missed this. The answer is "Yes".

FWIW as a 2-year late answer: the list items need stable keys. using the node is the wrong approach. giving the components keys in the portal and using them via...

Will close this as this won't be coming to portal-vue - not really feasable.

I'll close this as inactive. Can't do much without a way to reproduce the problem

In Vue 3, the default way to add an element property/attribute is through the DOM property - if it exists. i.e.: ```js const el = document.createElement('div') // setting an id...