mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(NavBar): get correct height in mobile safari (#10190)
This commit is contained in:
parent
22ee50576c
commit
6ed16c0770
@ -31,7 +31,13 @@ export default createComponent({
|
||||
|
||||
mounted() {
|
||||
if (this.placeholder && this.fixed) {
|
||||
this.height = this.$refs.navBar.getBoundingClientRect().height;
|
||||
const setHeight = () => {
|
||||
this.height = this.$refs.navBar.getBoundingClientRect().height;
|
||||
};
|
||||
|
||||
setHeight();
|
||||
// https://github.com/youzan/vant/issues/10131
|
||||
setTimeout(setHeight, 100);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user