7
使用vant-tab的时候报错 index.js:153 Uncaught (in promise) TypeError: Cannot read property 'width' of undefined
局部业务代码如下 发现去掉active="{{active}}" 就不报错。翻开源码。。。 this.data.active由于我传入的是String,所以this.currentName也为String类型,与item.computedName类型不符,===不成立。
再次翻看文档,active是支持 String|Number的。于是手动将===改为==。问题解决