mand-mobile
mand-mobile copied to clipboard
【step bug】
bug表现为:进入页面,如果md-step是在二级页面,当展开二级页面时,md-step无法获取真正的step item 高度
/*
判断二级页面展开时,加入以下代码,手动执行【$_initStepSize】方法
*/
...
watch: {
visible(val) {
if (val) {
this.$nextTick(() => {
this.$refs['stepRef'].$_initStepSize();
});
}
},
},
...