vant/packages/mixins/popup/context.js
2018-10-25 13:10:09 +08:00

10 lines
130 B
JavaScript

export default {
zIndex: 2000,
stack: [],
lockCount: 0,
get top() {
return this.stack[this.stack.length - 1];
}
};