vant/src/mixins/popup/context.ts
2020-01-19 11:57:09 +08:00

17 lines
275 B
TypeScript

import { OverlayConfig } from './overlay';
export type StackItem = {
vm: any;
config: OverlayConfig;
};
export const context = {
zIndex: 2000,
lockCount: 0,
stack: [] as StackItem[],
get top(): StackItem {
return this.stack[this.stack.length - 1];
},
};