ckgl/node_modules/vant/es/composables/use-global-z-index.mjs
2024-12-21 13:52:42 +08:00

10 lines
179 B
JavaScript

let globalZIndex = 2e3;
const useGlobalZIndex = () => ++globalZIndex;
const setGlobalZIndex = (val) => {
globalZIndex = val;
};
export {
setGlobalZIndex,
useGlobalZIndex
};