Tino Koch

Results 28 comments of Tino Koch

To make this work, you can wrap your variables in a computed. ```typescript import { useProductListQuery } from '~~/generated/graphql' const category = ref('fashion') const variables = computed(() => ({ category:...

For anyone looking for an alternative: I think instant.io is a pretty good substitute.

Faking a mouse event in the canvas turned out to be a workaround for me. ```javascript document.addEventListener('pointerleave', () => { canvas.dispatchEvent(new MouseEvent('pointerup')) }) ```

If you want to use vue-google-maps with Vue 2 you should use vue2-google-maps.

@rzb I'm not quite sure. There are different forks. See https://github.com/GuillaumeLeclerc/vue-google-maps/issues/119

@alvarosabu @JaimeTorrealba and I had a chat about the while topic. We propose the following structure for `useLoop` to allow users to register callbacks around a loop's lifecycle. **Types/Interfaces:** ```typescript...

@andretchen0 What you are describing is what was discussed in #426 . I agree with you. The fix should be provided in the scope of this issue.

> Maybe I'm misunderstanding, but couldn't you just [pause/resume](https://tresjs.org/api/composables.html#pause-and-resume) the render loop to implement that? I think that approach would not be sufficient. pausing the render loop manually means, you...

Unfortunately, there is no progress on this.

To make this work, you can wrap your variables in a computed. ```typescript import { useProductListQuery } from '~~/generated/graphql' const category = ref('fashion') const variables = computed(() => ({ category:...