mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(IndexBar): sidebar not exists (#4310)
* fix(IndexBar): sidebar not exists * fix(IndexBar): remove undefined sidebar
This commit is contained in:
parent
094f9ba1eb
commit
935a23738f
@ -1,6 +1,8 @@
|
||||
import { isDef, isNumber, isPlainObject, isPromise } from './validator';
|
||||
import { canIUseGroupSetData, canIUseNextTick } from './version';
|
||||
|
||||
export { isDef } from './validator';
|
||||
|
||||
export function range(num: number, min: number, max: number) {
|
||||
return Math.min(Math.max(num, min), max);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { GREEN } from '../common/color';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { useChildren } from '../common/relation';
|
||||
import { getRect } from '../common/utils';
|
||||
import { getRect, isDef } from '../common/utils';
|
||||
import { pageScrollMixin } from '../mixins/page-scroll';
|
||||
|
||||
const indexList = () => {
|
||||
@ -110,6 +110,9 @@ VantComponent({
|
||||
|
||||
setSiderbarRect() {
|
||||
return getRect(this, '.van-index-bar__sidebar').then((res) => {
|
||||
if (!isDef(res)) {
|
||||
return;
|
||||
}
|
||||
this.sidebar = {
|
||||
height: res.height,
|
||||
top: res.top,
|
||||
|
Loading…
x
Reference in New Issue
Block a user