AkonXI

Results 6 comments of AkonXI

I got a similar problem when I use prettier to format code, [#issue 11782 in prettier/prettier]( https://github.com/prettier/prettier/issues/11782)

Althought I don't know why , `"preserveSymlinks": true` resolved my problems

> Looks like it does... > > https://jbaysolutions.github.io/vue-grid-layout/guide/properties.html#transformscale > > Also listed in the change log... > > 2.4.0 (Aug 3, 2022) GridLayout **transformScale** prop, to allow proper dragging and...

> 俺也一样 目前临时的解决方案是 判断浏览器版本 大于等于128的把组件的getPopupContainer绑定到body上,小于128继续不变绑定到父元素上 > > ``` > function getPopupContainer(triggerNode) { > const userAgent = navigator.userAgent; > const index = userAgent.indexOf('Chrome/') > const chromeVersion = userAgent.substring(index + 7); >...

> > > > > > 俺也一样 目前临时的解决方案是 判断浏览器版本 大于等于128的把组件的getPopupContainer绑定到body上,小于128继续不变绑定到父元素上 > > > > > > ``` > > > > > > function getPopupContainer(triggerNode) { > > > >...