mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: move useRelation to @vant/use
This commit is contained in:
parent
9923b50176
commit
6cd9e98ce4
@ -58,7 +58,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "7.x",
|
"@babel/runtime": "7.x",
|
||||||
"@vant/icons": "1.3.0",
|
"@vant/icons": "1.3.0",
|
||||||
"@vant/use": "^0.0.2",
|
"@vant/use": "^0.0.3",
|
||||||
"vue-lazyload": "1.2.3"
|
"vue-lazyload": "1.2.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@ -3,7 +3,7 @@ import { createNamespace } from '../utils';
|
|||||||
import { ACTION_BAR_KEY } from '../action-bar';
|
import { ACTION_BAR_KEY } from '../action-bar';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useRoute, routeProps } from '../composition/use-route';
|
import { useRoute, routeProps } from '../composition/use-route';
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import { createNamespace } from '../utils';
|
|||||||
import { ACTION_BAR_KEY } from '../action-bar';
|
import { ACTION_BAR_KEY } from '../action-bar';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { useRoute, routeProps } from '../composition/use-route';
|
import { useRoute, routeProps } from '../composition/use-route';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('action-bar');
|
const [createComponent, bem] = createNamespace('action-bar');
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { watch } from 'vue';
|
import { watch } from 'vue';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { CHECKBOX_KEY } from '../checkbox';
|
import { CHECKBOX_KEY } from '../checkbox';
|
||||||
|
import { useChildren } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
import { useLinkField } from '../composition/use-link-field';
|
import { useLinkField } from '../composition/use-link-field';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('checkbox-group');
|
const [createComponent, bem] = createNamespace('checkbox-group');
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { computed, watch } from 'vue';
|
import { computed, watch } from 'vue';
|
||||||
import { createNamespace, pick } from '../utils';
|
import { createNamespace, pick } from '../utils';
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useLinkField } from '../composition/use-link-field';
|
import { useLinkField } from '../composition/use-link-field';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
import Checker, { checkerProps } from './Checker';
|
import Checker, { checkerProps } from './Checker';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('checkbox');
|
const [createComponent, bem] = createNamespace('checkbox');
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { computed, PropType } from 'vue';
|
import { computed, PropType } from 'vue';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { ROW_KEY, RowProvide } from '../row';
|
import { ROW_KEY, RowProvide } from '../row';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('col');
|
const [createComponent, bem] = createNamespace('col');
|
||||||
|
@ -4,7 +4,7 @@ import { ref, watch, computed, nextTick } from 'vue';
|
|||||||
import { raf, doubleRaf, createNamespace } from '../utils';
|
import { raf, doubleRaf, createNamespace } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { useLazyRender } from '../composition/use-lazy-render';
|
import { useLazyRender } from '../composition/use-lazy-render';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('collapse');
|
const [createComponent, bem] = createNamespace('collapse');
|
||||||
|
|
||||||
|
@ -1,129 +0,0 @@
|
|||||||
import {
|
|
||||||
VNode,
|
|
||||||
inject,
|
|
||||||
isVNode,
|
|
||||||
provide,
|
|
||||||
computed,
|
|
||||||
reactive,
|
|
||||||
onUnmounted,
|
|
||||||
getCurrentInstance,
|
|
||||||
VNodeNormalizedChildren,
|
|
||||||
ComponentPublicInstance as PublicInstance,
|
|
||||||
ComponentInternalInstance as InternalInstance,
|
|
||||||
} from 'vue';
|
|
||||||
|
|
||||||
export function flattenVNodes(children: VNodeNormalizedChildren) {
|
|
||||||
const result: VNode[] = [];
|
|
||||||
|
|
||||||
const traverse = (children: VNodeNormalizedChildren) => {
|
|
||||||
if (Array.isArray(children)) {
|
|
||||||
children.forEach((child) => {
|
|
||||||
if (isVNode(child)) {
|
|
||||||
result.push(child);
|
|
||||||
|
|
||||||
if (child.component?.subTree) {
|
|
||||||
traverse(child.component.subTree.children);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (child.children) {
|
|
||||||
traverse(child.children);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
traverse(children);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
// sort children instances by vnodes order
|
|
||||||
export function sortChildren(
|
|
||||||
parent: InternalInstance,
|
|
||||||
publicChildren: PublicInstance[],
|
|
||||||
internalChildren: InternalInstance[]
|
|
||||||
) {
|
|
||||||
const vnodes = flattenVNodes(parent.subTree.children);
|
|
||||||
|
|
||||||
internalChildren.sort(
|
|
||||||
(a, b) => vnodes.indexOf(a.vnode) - vnodes.indexOf(b.vnode)
|
|
||||||
);
|
|
||||||
|
|
||||||
const orderedPublicChildren = internalChildren.map((item) => item.proxy!);
|
|
||||||
|
|
||||||
publicChildren.sort((a, b) => {
|
|
||||||
const indexA = orderedPublicChildren.indexOf(a);
|
|
||||||
const indexB = orderedPublicChildren.indexOf(b);
|
|
||||||
return indexA - indexB;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useChildren(key: string) {
|
|
||||||
const publicChildren: PublicInstance[] = reactive([]);
|
|
||||||
const internalChildren: InternalInstance[] = reactive([]);
|
|
||||||
const parent = getCurrentInstance()!;
|
|
||||||
|
|
||||||
const linkChildren = (value: any) => {
|
|
||||||
const link = (child: InternalInstance) => {
|
|
||||||
if (child.proxy) {
|
|
||||||
internalChildren.push(child);
|
|
||||||
publicChildren.push(child.proxy);
|
|
||||||
sortChildren(parent, publicChildren, internalChildren);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const unlink = (child: InternalInstance) => {
|
|
||||||
const index = internalChildren.indexOf(child);
|
|
||||||
publicChildren.splice(index, 1);
|
|
||||||
internalChildren.splice(index, 1);
|
|
||||||
};
|
|
||||||
|
|
||||||
provide(key, {
|
|
||||||
link,
|
|
||||||
unlink,
|
|
||||||
children: publicChildren,
|
|
||||||
internalChildren,
|
|
||||||
...value,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
return {
|
|
||||||
children: publicChildren,
|
|
||||||
linkChildren,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
type ParentProvide<T> = T & {
|
|
||||||
link(child: InternalInstance): void;
|
|
||||||
unlink(child: InternalInstance): void;
|
|
||||||
children: PublicInstance[];
|
|
||||||
internalChildren: InternalInstance[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export function useParent<T>(key: string) {
|
|
||||||
const parent = inject<ParentProvide<T> | null>(key, null);
|
|
||||||
|
|
||||||
if (parent) {
|
|
||||||
const instance = getCurrentInstance();
|
|
||||||
|
|
||||||
if (instance) {
|
|
||||||
const { link, unlink, internalChildren, ...rest } = parent;
|
|
||||||
|
|
||||||
link(instance);
|
|
||||||
|
|
||||||
onUnmounted(() => {
|
|
||||||
unlink(instance);
|
|
||||||
});
|
|
||||||
|
|
||||||
const index = computed(() => internalChildren.indexOf(instance));
|
|
||||||
|
|
||||||
return {
|
|
||||||
parent: rest,
|
|
||||||
index,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {};
|
|
||||||
}
|
|
@ -5,8 +5,8 @@ import { createNamespace } from '../utils';
|
|||||||
import { DROPDOWN_KEY } from '../dropdown-menu';
|
import { DROPDOWN_KEY } from '../dropdown-menu';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Cell from '../cell';
|
import Cell from '../cell';
|
||||||
|
@ -4,9 +4,13 @@ import { ref, computed } from 'vue';
|
|||||||
import { createNamespace, isDef } from '../utils';
|
import { createNamespace, isDef } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useClickAway, useScrollParent, useEventListener } from '@vant/use';
|
import {
|
||||||
|
useChildren,
|
||||||
|
useClickAway,
|
||||||
|
useScrollParent,
|
||||||
|
useEventListener,
|
||||||
|
} from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
import { useRect } from '../composition/use-rect';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('dropdown-menu');
|
const [createComponent, bem] = createNamespace('dropdown-menu');
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Icon from '../icon';
|
import Icon from '../icon';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
|
import { useChildren } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('form');
|
const [createComponent, bem] = createNamespace('form');
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import { BORDER } from '../utils/constant';
|
|||||||
import { GRID_KEY } from '../grid';
|
import { GRID_KEY } from '../grid';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { useRoute, routeProps } from '../composition/use-route';
|
import { useRoute, routeProps } from '../composition/use-route';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { createNamespace, addUnit } from '../utils';
|
import { createNamespace, addUnit } from '../utils';
|
||||||
import { BORDER_TOP } from '../utils/constant';
|
import { BORDER_TOP } from '../utils/constant';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('grid');
|
const [createComponent, bem] = createNamespace('grid');
|
||||||
|
|
||||||
|
@ -6,9 +6,9 @@ import { BORDER_BOTTOM } from '../utils/constant';
|
|||||||
import { INDEX_BAR_KEY } from '../index-bar';
|
import { INDEX_BAR_KEY } from '../index-bar';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useHeight } from '../composition/use-rect';
|
import { useHeight } from '../composition/use-rect';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('index-anchor');
|
const [createComponent, bem] = createNamespace('index-anchor');
|
||||||
|
|
||||||
|
@ -13,10 +13,9 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useScrollParent, useEventListener } from '@vant/use';
|
import { useChildren, useScrollParent, useEventListener } from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
import { useRect } from '../composition/use-rect';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
export const INDEX_BAR_KEY = 'vanIndexBar';
|
export const INDEX_BAR_KEY = 'vanIndexBar';
|
||||||
|
|
||||||
|
@ -6,9 +6,9 @@ import { deepClone } from '../utils/deep-clone';
|
|||||||
import { range, isObject, createNamespace, preventDefault } from '../utils';
|
import { range, isObject, createNamespace, preventDefault } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const DEFAULT_DURATION = 200;
|
const DEFAULT_DURATION = 200;
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ import { unitToPx, preventDefault, createNamespace } from '../utils';
|
|||||||
import { BORDER_UNSET_TOP_BOTTOM } from '../utils/constant';
|
import { BORDER_UNSET_TOP_BOTTOM } from '../utils/constant';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useChildren } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Loading from '../loading';
|
import Loading from '../loading';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { watch } from 'vue';
|
import { watch } from 'vue';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
import { useLinkField } from '../composition/use-link-field';
|
import { useLinkField } from '../composition/use-link-field';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('radio-group');
|
const [createComponent, bem] = createNamespace('radio-group');
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { pick, createNamespace } from '../utils';
|
import { pick, createNamespace } from '../utils';
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import Checker, { checkerProps } from '../checkbox/Checker';
|
import Checker, { checkerProps } from '../checkbox/Checker';
|
||||||
import { RADIO_KEY } from '../radio-group';
|
import { RADIO_KEY } from '../radio-group';
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { computed, PropType, ComputedRef } from 'vue';
|
import { computed, PropType, ComputedRef } from 'vue';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('row');
|
const [createComponent, bem] = createNamespace('row');
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { useRoute, routeProps } from '../composition/use-route';
|
import { useRoute, routeProps } from '../composition/use-route';
|
||||||
import { SIDEBAR_KEY } from '../sidebar';
|
import { SIDEBAR_KEY } from '../sidebar';
|
||||||
import Badge from '../badge';
|
import Badge from '../badge';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { watch } from 'vue';
|
import { watch } from 'vue';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('sidebar');
|
const [createComponent, bem] = createNamespace('sidebar');
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import { computed } from 'vue';
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { BORDER } from '../utils/constant';
|
import { BORDER } from '../utils/constant';
|
||||||
import { STEPS_KEY } from '../steps';
|
import { STEPS_KEY } from '../steps';
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import Icon from '../icon';
|
import Icon from '../icon';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('step');
|
const [createComponent, bem] = createNamespace('step');
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('steps');
|
const [createComponent, bem] = createNamespace('steps');
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { computed, nextTick, onMounted, reactive } from 'vue';
|
import { computed, nextTick, onMounted, reactive } from 'vue';
|
||||||
import { SWIPE_KEY } from '../swipe';
|
import { SWIPE_KEY } from '../swipe';
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace } from '../utils';
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('swipe-item');
|
const [createComponent, bem] = createNamespace('swipe-item');
|
||||||
|
|
||||||
|
@ -19,11 +19,10 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { usePageVisibility, useWindowSize } from '@vant/use';
|
import { useChildren, useWindowSize, usePageVisibility } from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
import { useRect } from '../composition/use-rect';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('swipe');
|
const [createComponent, bem] = createNamespace('swipe');
|
||||||
|
|
||||||
|
@ -3,8 +3,8 @@ import { createNamespace } from '../utils';
|
|||||||
import { TABS_KEY } from '../tabs';
|
import { TABS_KEY } from '../tabs';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useParent } from '@vant/use';
|
||||||
import { routeProps } from '../composition/use-route';
|
import { routeProps } from '../composition/use-route';
|
||||||
import { useParent } from '../composition/use-relation';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('tab');
|
const [createComponent, bem] = createNamespace('tab');
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import { TABBAR_KEY } from '../tabbar';
|
|||||||
import { createNamespace, isObject, isDef } from '../utils';
|
import { createNamespace, isObject, isDef } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '../composition/use-relation';
|
import { useParent } from '@vant/use';
|
||||||
import { routeProps, useRoute } from '../composition/use-route';
|
import { routeProps, useRoute } from '../composition/use-route';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -6,7 +6,7 @@ import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
|||||||
import { callInterceptor } from '../utils/interceptor';
|
import { callInterceptor } from '../utils/interceptor';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useChildren } from '../composition/use-relation';
|
import { useChildren } from '@vant/use';
|
||||||
import { usePlaceholder } from '../composition/use-placeholder';
|
import { usePlaceholder } from '../composition/use-placeholder';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('tabbar');
|
const [createComponent, bem] = createNamespace('tabbar');
|
||||||
|
@ -25,11 +25,15 @@ import { BORDER_TOP_BOTTOM } from '../utils/constant';
|
|||||||
import { callInterceptor } from '../utils/interceptor';
|
import { callInterceptor } from '../utils/interceptor';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useWindowSize, useScrollParent, useEventListener } from '@vant/use';
|
import {
|
||||||
|
useChildren,
|
||||||
|
useWindowSize,
|
||||||
|
useScrollParent,
|
||||||
|
useEventListener,
|
||||||
|
} from '@vant/use';
|
||||||
import { route } from '../composition/use-route';
|
import { route } from '../composition/use-route';
|
||||||
import { useRefs } from '../composition/use-refs';
|
import { useRefs } from '../composition/use-refs';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
import { useChildren } from '../composition/use-relation';
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Sticky from '../sticky';
|
import Sticky from '../sticky';
|
||||||
|
@ -2175,10 +2175,10 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
||||||
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
||||||
|
|
||||||
"@vant/use@^0.0.2":
|
"@vant/use@^0.0.3":
|
||||||
version "0.0.2"
|
version "0.0.3"
|
||||||
resolved "https://registry.npmjs.org/@vant/use/-/use-0.0.2.tgz#9ea72642e0d6ef664f19e80b73fdb59b9f403d21"
|
resolved "https://registry.npmjs.org/@vant/use/-/use-0.0.3.tgz#e3043830206344442a22d302d556c2e36b492eb5"
|
||||||
integrity sha512-kPgqwBMKaeKPQ/LZjjVDHKxo2Thi4w5M186+Yg4jATW7qCcfd0CujDmqlETfFjBCbw40C1HVu/kmhXE0cQPPUg==
|
integrity sha512-7B7tmc8OqkNlMsNzZrIBy2hE8pBvQexBdE74+xr8/HtLhFbVkiZeO+YsOmgYTrsnSEvACBreoIkFX2tjRjzdMw==
|
||||||
|
|
||||||
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
||||||
version "1.0.0-rc.2"
|
version "1.0.0-rc.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user