Derek Brooks

Results 10 comments of Derek Brooks

i just started manually tracking the `fullPath` in a plugin and analytics seems to pick everything up properly... `/plugins/analytics.js` ``` import Vue from 'vue' import VueGtag from 'vue-gtag' import {...

If it's easier to iteratively build this, "find in note" seems like it'd be much more useful than implementing _both_ "find & replace." At least for me. :) I very...

Can anyone with an Arlo Q camera show what the API response looks like so that we can add it to a test fixture?

to easily cache requests on the client side, check out the new `getCachedData` option on `useFetch` and `useAsyncData`. simple example using the default `key`: ``` const nuxtApp = useNuxtApp(); const...

in my opinion, it should be default behavior that all requests, even those made by reactive changes, use the cache if your definition of `getCachedData()` resolves cached data. i.e. the...

ah, yes. maybe it would be best if reactive changes attempt to use the cache, but `refresh()` does not? or, like you suggested, `refresh()` could use the cache unless the...

@darioferderber - i don't think the private `_initial` hack helps because i'm not calling `refresh()` manually. the http request is automatically triggered when i change the reactive `query` parameters of...

the bug seems to be that the `doubleTap` event it not being emitted on mobile chrome. `touchEndTime - data.lastClickTime` is much greater than 300 despite tapping fast. my double tap...

[mswjs](https://mswjs.io/) has graphql support.