mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(DropdownMenu): menu ref may not exist in some cases (#5770)
This commit is contained in:
parent
32f0446629
commit
bd335b2931
@ -53,8 +53,11 @@ export default createComponent({
|
||||
|
||||
methods: {
|
||||
updateOffset() {
|
||||
const { menu } = this.$refs;
|
||||
const rect = menu.getBoundingClientRect();
|
||||
if (!this.$refs.menu) {
|
||||
return;
|
||||
}
|
||||
|
||||
const rect = this.$refs.menu.getBoundingClientRect();
|
||||
|
||||
if (this.direction === 'down') {
|
||||
this.offset = rect.bottom;
|
||||
|
Loading…
x
Reference in New Issue
Block a user