bauer00
bauer00
While the workaround works, I get a Typescript error in VScode: `Type instantiation is excessively deep and possibly infinite.` 
I just encountered the same problem. I can build it locally, but not on CI, probably because the project is not as big yet. I think it's related to using...
@larsrickert I quickly created a more isolated test component I can share: CTest.vue: ``` import { watch } from 'vue' import { unrefElement, useEventListener, type VueInstance } from '@vueuse/core' export...
> In the meantime, using `Pick` to only use the properties that are actually used by your component seems to fix the issue until we find a general fix for...
Thanks for your responses. > `.first` is the same as `.header + .event` `.last` is the same as `.event:has(+.header), .event:last-of-type` Yes, we also found this, but unfortunately it's not supported...