mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
274 B
TypeScript
17 lines
274 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];
|
|
}
|
|
};
|