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: {
|
methods: {
|
||||||
updateOffset() {
|
updateOffset() {
|
||||||
const { menu } = this.$refs;
|
if (!this.$refs.menu) {
|
||||||
const rect = menu.getBoundingClientRect();
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const rect = this.$refs.menu.getBoundingClientRect();
|
||||||
|
|
||||||
if (this.direction === 'down') {
|
if (this.direction === 'down') {
|
||||||
this.offset = rect.bottom;
|
this.offset = rect.bottom;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user