Jukka Raimovaara
Jukka Raimovaara
I'll fix them all and try to figure if there is some elements that could be shared
@VividLemon maybe we use provide/inject, so have can have: `app.provide(GlobalOptionsKey,{nuxtLink: true})` `const options = inject(GlobalOptionsKey, defaultOptions)` You could also provide different options to a subset of component tree with this...
@VividLemon I think I fixes this in 0.26. Can you verify?
You mean something like https://vue-select.org/ ? or like: https://preview.colorlib.com/theme/bootstrap/multiselect-01/ It needs to be customisable via slots, aria labeled, keyboard navigable, etc. treeview might be a good component on it's own....
@VividLemon I got tired of waiting, so I did a test using only using bootstrap classes and css variables: https://stackblitz.com/edit/github-65w77s?file=src%2FApp.vue Would this be acceptable way of a light component. this...
@dword-design-honestly does my ui test above meet your needs? I really would not want to add all the features from those quite complex multiselects. (Don't want another BTable here) So...
I don't like the fact that vue-multiselect makes the content below jump when opening, that's a big no for me. I really don't like "x items selected" since it doesn't...
I think this is fixed in vueuse v14, which is in alpha at the moment. We'll upgrade to that once released. SSR problems in vue ecosystem seems to take few...
in #1821 I added lazy (to load on show) and persistent to not unmount on hide. In lazy = false & persistent = true, then the children are mounted the...
I changed the props to lazy and unmountLazy. By itself the unmountLazy doens't do anything, but with lazy it unmounts the children on hide.