fix(notice-bar): adjust scrollable behavior (#3727)

fix #3683
This commit is contained in:
rex 2020-11-02 20:38:51 +08:00 committed by GitHub
parent be16713510
commit ba31b465c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ VantComponent({
const { speed, scrollable, delay } = this.data;
if (scrollable && wrapRect.width < contentRect.width) {
if (scrollable || wrapRect.width < contentRect.width) {
const duration = (contentRect.width / speed) * 1000;
this.wrapWidth = wrapRect.width;