Closed HanHuiOnLine closed 6 months ago
如上图所示,我尝试使用propertyBlackList属性, propertyBlackList: { ".van-overlay": "width,left", }, 但是"width,left"好像不能这么写,只能写一个。
propertyBlackList: { ".van-overlay": "width,left", },
使用数组的方式可以propertyBlackList: [{ ".van-overlay": "width" }, { ".van-overlay": "left" }]
propertyBlackList: [{ ".van-overlay": "width" }, { ".van-overlay": "left" }]
您试试这样,貌似也行:
propertyBlackList: { ".van-overlay": ["width", "left"] }
这样子更简洁一点,如果不行我加个这个写法。
如上图所示,我尝试使用propertyBlackList属性,
propertyBlackList: { ".van-overlay": "width,left", },
但是"width,left"好像不能这么写,只能写一个。