sondh0127

Results 12 comments of sondh0127

As a suggestion for an awesome react hook tutorial form 'EpicReact.Dev' https://github.com/kentcdodds/react-hooks

@DamianOsipiuk Thank you for explaining. But I saw `data` of vueQueryClient print out at 'app:created'. Is that not right? Here is the reproduction https://stackblitz.com/edit/nuxt-starter-gav86p?file=app.vue ![image](https://user-images.githubusercontent.com/62163604/183790138-8843664b-16cf-4227-ae84-afbe11b5b254.png)

> Pic 1: I also saw the data with vue-query key in source file ![image](https://user-images.githubusercontent.com/62163604/183848674-f46bc351-a328-46b1-9eff-2d1fdaeab9b4.png) Pic 2: There is no refresh request at client for the todos in the example...

I'm use this one on the reproduction. ``` "devDependencies": { "nuxt": "3.0.0-rc.6" }, "dependencies": { "vue-query": "^2.0.0-beta.5" } ```

Thank you for your explanation. @dai-shi I'm facing a real use-case here with atomWithInfiniteQuery, that I need to get `hasNextPage` to display loadmore button. ![image](https://user-images.githubusercontent.com/62163604/159209675-bc5ddf2e-6e61-427c-aef7-e4c9284b8262.png) I tried to add second...

> Thank you for your explanation. @dai-shi I'm facing a real use-case here with atomWithInfiniteQuery, that I need to get `hasNextPage` to display loadmore button. > > ```ts > infiniteMetaData.onMount...

Would it be possible to extract it as a vite plugin for use in vite base SPA applications @danielroe

I don't think the config.base work with assets on dev: I tried (expect: `http://127.0.0.1:7106/src/logo.svg` on image src) ![image](https://user-images.githubusercontent.com/62163604/129565635-8b6d3d59-6167-4a3f-8328-3d6d2fee3ac5.png) ![image](https://user-images.githubusercontent.com/62163604/129565599-b23d74a1-8b50-43b8-9714-07e59bfaa660.png) I would appreciate an example if you could P/S: This pull...

Thank you for the information. @sxzz *P/S: I saw that the normal `defineProps` work ok without warning. (if I turn off the macro module) The `type import` for props is...