Alexey Iskhakov

Results 20 comments of Alexey Iskhakov

@olitaylor I would also like this to be implemented. :)

Hey, uhm, what's the status of this? It's been three years now, and the idea is superb. So what's next? FL still doesn't have a proper way to welcome newcomers...

It should possible to create higher-order-components for this exact purpose: ```ts // Async component factory that returns a stateless sync component async function A({i}) { await wait(1000); return function (this:...

@brainkim, thank you so much for such a thorough response, I greatly appreciate it!\ Now I (and, I'm sure, many others will) understand the reasoning behind certain decisions thanks to...

There is [an example in docs](https://crank.js.org/guides/reusable-logic#async-iterators) addressing precisely this. In the example, the `createInterval` function is completely Crank-agnostic, just like the websocket is. So, I guess, it _does_ make sense...

Hmm, this whole example gives me a feeling that if one wants to program UI using async iterators in Crank, usage of `Repeater.merge()` is necessary to achieve any intuitive behaviour....

Hello, @nattam. Sorry for taking so long to respond. This feature request is not particularly easy to implement with current realization of the component. We'll schedule it for the v2.0...

For people that come here looking for the solution - remember that you can always extend any component to change its functionality, like so: ```js import VueSimpleSuggest from 'vue-simple-suggest' export...

For anyone who could possibly implement support for for the current version - a PR is highly welcome!

Hello, @cataldo91. Your problem is not connected to vue-simple-suggest. I suppose you simply haven't stated a ref in your template code.