fix(icon): fix location error when custom-class

This commit is contained in:
landluck 2023-05-04 10:08:14 +08:00
parent e0df0181f2
commit 31b17e910b
2 changed files with 8 additions and 1 deletions

View File

@ -2,13 +2,16 @@
@import '@vant/icons/src/index.less';
:host {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.van-icon {
&--custom {
position: relative;
}
&--image {
width: 1em;
height: 1em;

View File

@ -9,6 +9,10 @@ function isImage(name) {
function rootClass(data) {
var classes = ['custom-class'];
if (data.classPrefix !== 'van-icon') {
classes.push('van-icon--custom')
}
if (data.classPrefix != null) {
classes.push(data.classPrefix);
}