Eduardo San Martin Morote
Eduardo San Martin Morote
A pr and making sure it works with gifs would be nice 🙂
hey, thanks for the kind words! 🙂 Yeah, that would be great, I think stb_image reads tags by default but I'm not sure of it. I'm open to PRs for...
I don't think I'll be able to get some time off to work on this either. :stuck_out_tongue: but who knows!
This would be really nice to have as ctrl+n and ctrl+p are common shortcuts in terminals (and vim) to cycle through options without having to reach out for arrow keys....
One or multiple example would help understand what you want by auto refs and also if it's technically possible or not. Also note that **you don't need to use `storeToRefs()`**,...
Maybe this is possible with a vite plugin and I'm open to adding it to the main repo but I don't have the bandwidth to do it. Another solution is...
This is similar to the `stores` option mentioned in Vuex 5. Given you can write a store with ```js defineStore('b', () => { const userStore = useUserStore() // use userStore...
I'm realizing the `stores` option is not mentioned in the [rfc](https://github.com/vuejs/rfcs/discussions/270) but it's similar to what I updated in your code example. It could also be ```js stores: { userStore:...
I'm personally not a fan of this syntax unless it manages to: - **fully** handle TS (autocompletion) - not increase the size of `mapWritableState()` much - Find a way to...
that syntax would be confusing with the existing one `mapState(useStore, ['name', 'email'])` that maps 2 properties.