vant/packages/mixins/popup/context.js

14 lines
170 B
JavaScript

export default {
id: 1,
zIndex: 2000,
stack: [],
plusKey(key) {
return this[key]++;
},
get top() {
return this.stack[this.stack.length - 1];
}
};