fix(icon): fix dot when custom icon (#5253)

Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
landluck 2023-02-26 18:47:44 +08:00 committed by GitHub
parent 0fc6103e1b
commit cf36c8ebbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,10 @@ function rootClass(data) {
classes.push(data.classPrefix);
}
if (data.classPrefix !== 'van-icon') {
classes.push('van-icon')
}
if (isImage(data.name)) {
classes.push('van-icon--image');
} else if (data.classPrefix != null) {