Jukka Raimovaara

Results 122 comments of Jukka Raimovaara

yeah, there should be inheritAttrs: false, if there is v-bind="$attrs". or no v-bind, since they pretty much do the same thing.

I created a function to delete from compressed table using the segmentby col: https://gist.github.com/xvaara/81990e8291019f931387492c1869fe84 it has a lot of debug output, just comment out the notices when in production.

Still seems to be a problem for me on pg14 & ts 2.8.1. The difference for me is that I have a view on the compressed table and I'm selecting...

@svenklemm it seems it goes away if I vacuum full the table... also SET enable_indexscan to false; made it go away. It's some weird side effect that I can't reproduce,...

do we want to reimplement the bootstrap js in "native vue" or just use bootstraps own js like here: [https://dev.to/codeply/using-bootstrap-5-with-vue-js-5fnp](https://dev.to/codeply/using-bootstrap-5-with-vue-js-5fnp) There is also this: [https://github.com/superbvue/SuperBVue](https://github.com/superbvue/SuperBVue) and [material desin bootstrap](https://github.com/mdbootstrap/mdb-vue-ui-kit)

It might be complex to implement both bootstrap 4 and 5, there are differences in the class names. So every component would need two versions.

Just a quick hack using css filter: https://gist.github.com/xvaara/771d3c92a62d4149fa4e4b6d629b1b2b ![Screenshot 2021-03-03 at 15 17 40](https://user-images.githubusercontent.com/130606/109812070-44d6bf00-7c34-11eb-915a-868de9f89601.png)

Could we just "massage" the $attrs to remove the class and put that to the root element. That would solve my problem and change as little as possible.

we could have: ```js const { class: rootClasses, ...attrs } = useAttrs(); ``` and use attrs instead of $attrs in input element, and add rootClasses to computedClasses: ```js const computedClasses...

The documentation is a bit unclear. The hide prop is for a middleware for hiding the popover when the reference leaves viewport: https://floating-ui.com/docs/hide show prop is to show the popover...