Tobi

Results 11 comments of Tobi

@ArielPrevu3D Can you please provide a code example? Because I am not exactly sure what you want to achieve here.

@eikebartels as far as I know: non decorated functions are stripped of when a module gets converted (e,g. only getters, actions, mutation methods will remain) - someone please correct me...

You need to convert your `filteredUsers` method into a valid getter: ```ts get filteredUsers() { return (filter: string) => { const filterLC = filter.toLowerCase(); return this.users.filter( (user) => expandUser(user) .toLowerCase()...

> There are no breaking changes. It just depends on vue3 and vuex4 now. Which is - as per definition - a breaking change. Before v2: ``` [...] "peerDependencies": {...

@FullPint can you tell which package you are now using instead?

> All we are doing this way is forcing people who got burned by that to implement their own `takeUntilDestroyed`, wrapping the bundled one in `catchError`. Unless I'm missing something,...

@danielroe Wouldn't it be better to keep `pending` as a computed, as @ctigrisht said - this is a convenient wrapper for useFetch; if this doesn't exist anymore then we need...

> Agree this would be a big plus. Looks like the vite change that was supposed to unblock #1144 hasn't gone through - [vitejs/vite#3928](https://github.com/vitejs/vite/pull/3928) Looks like the vite issue has...

> > I am a little confused on how to replace `pending.value` in docs and tests. Should i replace it with `status.value === "pending"` or `status.value === "idle" || status.value...

@hamonCordova > There is same answer everytime, "have you tried this [...]?". You didn't provide any valuable information what you already have tried, so yes this will always be the...