Cyrus Collier

Results 14 comments of Cyrus Collier

Thanks, @harlan-zw . I've started a PR: https://github.com/vueuse/schema-org/pull/10 I tried to be as thorough as I could implementing all of the related specs required to build Event, but I only...

@jerryjappinen I was able to get this working with Nuxt 3 using the`0.17.0-beta.2` version of vue-svg-loader. My nuxt config looks like this: ```js export default defineNuxtConfig({ vite: false, hooks: {...

I believe this edge case is also happening for us (see discussion I started https://github.com/node-fetch/node-fetch/discussions/1614). It occurs on less than 1% of the requests, but when it happens, it is...

Thanks for the additional info, @jmurty. It certainly sounds like the same problem. I hope we won't have to swap Node Fetch for Axios for connecting to our API, but...

For anyone that comes across this ticket, I was able to find a workaround by adding the `static` prop to the default TabPanel, [which isn't documented](https://headlessui.dev/vue/tabs#tab-panel). Example: ```vue ``` For...

Thanks, @alfa-jpn that technique solved this for me (for now!). I'll add that in our case, we aren't setting `server: false` explicitly, but instead are calling `useFetch()` within `onMounted()`, which...

The documentation says that `useFetch()` can also be used in lifecycle hooks. I think my confusion (and perhaps others) is around the best practice that composable functions should only be...

We started getting this error when we starting running Nuxt locally with an SSL cert. Possible it's a memory management issue, as we often see various memory-related errors like like...

I've having the same issue. Our Nuxt 3 application requires some global components due to a need to dynamically use `resolveComponent()` with a component name as a variable rather than...