mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
252 B
JavaScript
17 lines
252 B
JavaScript
const PopupContext = {
|
|
idSeed: 1,
|
|
zIndex: 2000,
|
|
instances: {},
|
|
modalStack: [],
|
|
|
|
plusKeyByOne(key) {
|
|
return this[key]++;
|
|
},
|
|
|
|
get topModal() {
|
|
return this.modalStack[this.modalStack.length - 1];
|
|
}
|
|
};
|
|
|
|
export default PopupContext;
|