mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
export type StackItem = {
|
|
vm: any;
|
|
overlay: any;
|
|
};
|
|
|
|
export const context = {
|
|
zIndex: 2000,
|
|
lockCount: 0,
|
|
stack: [] as StackItem[],
|
|
find(vm: any): StackItem | undefined {
|
|
return this.stack.filter((item) => item.vm === vm)[0];
|
|
},
|
|
};
|