We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
打包嵌入到html的script会根据route控制Skeleton DOM的显示,但貌似对IE无效,如下代码:
if (skeletonId === skeleton.id) { skeleton.el.style = 'display:block;'; } else { skeleton.el.style = 'display:none;'; }
经过测试,IE对有 skeleton.el.style.display='block'或 skeleton.el.style.display='none'生效
skeleton.el.style.display='block'
skeleton.el.style.display='none'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
重现
问题
打包嵌入到html的script会根据route控制Skeleton DOM的显示,但貌似对IE无效,如下代码:
经过测试,IE对有
skeleton.el.style.display='block'
或skeleton.el.style.display='none'
生效The text was updated successfully, but these errors were encountered: