mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 01:54:48 +00:00
10 lines
130 B
JavaScript
10 lines
130 B
JavaScript
export default {
|
|
zIndex: 2000,
|
|
stack: [],
|
|
lockCount: 0,
|
|
|
|
get top() {
|
|
return this.stack[this.stack.length - 1];
|
|
}
|
|
};
|