fix(DropdownMenu): menu ref may not exist in some cases (#5770)

This commit is contained in:
chenjiahan 2020-03-07 09:21:27 +08:00
parent 32f0446629
commit bd335b2931

View File

@ -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;