fix(Tabbar): get correct height in mobile safari (#10185)

This commit is contained in:
neverland 2022-01-14 15:51:08 +08:00 committed by GitHub
parent 03f77d4bba
commit edaf7ec45b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,13 @@ export default createComponent({
mounted() {
if (this.placeholder && this.fixed) {
this.height = this.$refs.tabbar.getBoundingClientRect().height;
const setHeight = () => {
this.height = this.$refs.tabbar.getBoundingClientRect().height;
};
setHeight();
// https://github.com/youzan/vant/issues/10131
setTimeout(setHeight, 100);
}
},