Mike Zheng

Results 11 comments of Mike Zheng

Same problem here, tested with Firefox Browser Developer Edition 79.0b9(x64) ! When I remove/comment the e.preventDefault() line from index.js#L67, it works as expected then. This seems to be a bug....

@oldj 上面讨论的将程序或其快捷方式手动放入启动文件夹的方式的确可行, 但作为一款成熟的软件, 还是希望能在软件选项中增加一个开机启动的勾选, 那样更直观且合理 :)

对, 遇到同样问题, 官网文档示例中的整页滚动也是明显存在这个问题的(整页滚动时先只出现最上方一条记录, 隔几秒再出现整页的), 特意来issue看下是否有过反馈http://datav.jiaminghi.com/guide/scrollRankingBoard.html#%E5%8D%95%E6%9D%A1%E6%BB%9A%E5%8A%A8 http://datav-react.jiaminghi.com/guide/scrollRankingBoard.html#%E5%8D%95%E6%9D%A1%E6%BB%9A%E5%8A%A8

如果是用的Vue Cli 3及以上版本, vue.config.js中做如下配置(执行npm run build时对node_modules下@jiaminghi文件夹中的文件进行编译转换为ES5): module.exports = { transpileDependencies: ['@jiaminghi/*'] }; 默认情况下, babel编译是忽略node_modules下的所有文件(夹)的, 所以还是建议作者对源码进行ES5转换, 避免更多人踩坑 :)

``` // hello.ts function sayHello(person: String) { return `Hello ${person}`; } let randomIndex = Math.floor(Math.random() * 3); let possibleArr = ['Mike', 123, { name: 'Mike' }]; // let possibleArr =...

Excatlly the same problem I encountered, it's really annoying ! But it seems there isn't any settings to solve this headache except removing this plugin ...

最新版本[QTTabBar.Setup_1.5.5.1_zh.2021]的确存在这个问题, 我查看了相关issue, 作者都是提到启用.NET Frame Work 3.5即可, 但我家里笔记本和公司电脑都是确认启用了.NET Frame Work 3.5和.NET Frame Work 4.8的(如下图), 点击选项依然会崩溃-重启资源管理器[无法打开设置界面]。 已尝试过去掉.NET Frame Work 3.5和.NET Frame Work 4.8勾选, 重启电脑-重新勾选.NET Frame Work 3.5和.NET Frame Work 4.8, 无效; 用Revo...

参考[https://github.com/ElemeFE/element/issues/17686](url)这里的讨论, 在官方合并PR之前, 最佳的解决方案可能是@jawn-ha这位仁兄提到的: 还是针对body进行全屏, 但给真正需要全屏的元素加一个class, 比如screenfull-element(样式参考下方), 退出全屏后再去掉这个class, 这样一来, el-popover, el-tooltip, el-datepicker, el-pagination (pager)等全屏兼容问题都解决了。 `.screenfull-element { width: 100vw; height: 100vh; position: fixed; top: 0; bottom: 0; left: 0; right: 0; z-index:...

> > @linjiayu2012 我的tooltip是在table里的 。 然后用了你这个之后出现了tooltip定位出错的问题。你有遇到过嘛。比如我鼠标悬浮屏幕最下面的文字,结果tooltip出现在屏幕最上面[捂脸] > > 我找到了一个新的解决办法,全屏body然后把目标div添加以下css属性 .fullscreen-target { position:fixed !important; z-index:2002; top: 0; left: 0; right: 0; bottom: 0; } 亲测可行, 这应该是目前最好的方案了。即使是el-popover 等组件使用已支持的:popper-append-to-body="false"等属性, 依然不方便(需要动态设置, 全屏时为false, 非全屏时为true, 而且与el-column...

Hi, same problem occured, the solution would be Open VS Code as Administrator.