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
1.5.1
window 10 / IE11 / Vue ^2.6.11
https://www.antdv.com/components/layout-cn/
1.在本地运行是能展示; 2.打包后发布到服务器; 3.轮播组件 slot 未加载数据(轮播内容)
1.期待能兼容ie
没有加载slot(轮播内容)
The text was updated successfully, but these errors were encountered:
能提供复现吗?
Sorry, something went wrong.
@sendya 不好意思,是我们这边的问题,组件引用顺序问题!感觉很奇怪,Number 会被修改掉(只有在ie浏览器,而且是打包后), Number.toString(): function(t){var e=arguments.length<1?0:t,n=this;return n instanceof O&&(x?h((function(){b.valueOf.call(n)})):c(n)!=m)?u(new y(w(e)),n,O):w(e)}; // 该函数 prototype —> Number;
Carousel props 初始参数 那里Number类型数据就会为undefined;
ant-design-vue —> lib —> _util —> utils.js 中 var getType = exports.getType = function getType(fn) { var type = fn !== null && fn !== undefined ? fn.type ? fn.type : fn : null; var match = type && type.toString().match(FN_MATCH_REGEXP); return match && match[1]; }; // 造成 match[1] 为undefined 所以赋值default: undefined, 走马灯出错
如果 Carousel 组件 先于 Vuedraggable 引入 就不会 造成 Number 修改问题;
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Version
1.5.1
Environment
window 10 / IE11 / Vue ^2.6.11
Reproduction link
https://www.antdv.com/components/layout-cn/
Steps to reproduce
1.在本地运行是能展示;
2.打包后发布到服务器;
3.轮播组件 slot 未加载数据(轮播内容)
What is expected?
1.期待能兼容ie
What is actually happening?
没有加载slot(轮播内容)
The text was updated successfully, but these errors were encountered: