Gary Wong

Results 4 comments of Gary Wong

@readyonelabs it's because debounce() returns a function which you need to use again, something like this: ``` import { debounce } from 'vue-debounce'; export default { setup (props) { const...

I think it's because debounce() returns a function, so each time you call it, it returns a *new* function as opposed to calling the same instance of the function again...

After digging through the code some more, I found that there IS a TTL setting for subscriptions. It's an [environment variable](https://github.com/nuwave/lighthouse/blob/3230864c3b492b762c0f6d51370e3e8ea5366286/src/lighthouse.php#L315) called LIGHTHOUSE_SUBSCRIPTION_STORAGE_TTL. This was not mentioned in the docs...

So I am placing a component with some markers inside. I have a select box which a user can change to show/hide different markers inside the map. On page load,...