Adam DeHaven

Results 171 comments of Adam DeHaven

@ZeroThe2nd I'm planning on upgrading the `master` branch to Vue 2.7 and bumping the minor version (following the logic for other Vue libs) in the coming weeks. I don't recommend...

@ZeroThe2nd I have a draft PR in progress if you'd like to take a look: https://github.com/Kong/swrv/pull/304

@ZeroThe2nd our plan is to merge this in next week. More details can be found in the **Release strategy** section of [the PR](https://github.com/Kong/swrv/pull/304). Note: This **_will break_** SSR support

#304 has been merged - Vue 2.7 compatibility is now available as of version `0.10.0` 🎉

I believe you need to utilize [dependent fetching](https://docs-swrv.netlify.app/features.html#dependent-fetching) and check if your component has mounted; something like this: ```ts const isOpen = ref(false) const { data, error } = useSWRV(()...

@mmulqueen I'm planning on taking a closer look at this after the [Vue 2.7 PR](https://github.com/Kong/swrv/pull/304) is merged; however, that would likely require a bit of a rewrite on this PR....

Also, would this inject styles into the shadow DOM from child components imported within the `defineCustomElement` component that originate from external packages? As an example, if I define and export...

@raffobaffo would your solution also inject styles into the shadow DOM from child components imported within the `defineCustomElement` component that originate from external packages? As an example, if I define...

@raffobaffo would you be willing to update your reproduction repo linked above with a new branch that utilizes your fix? I tried what you have but wasn't able to get...