Files
cmgd-mini-app/uni_modules/nutui-uni/components/_hooks/useGlobalZIndex.ts
2026-01-05 12:47:14 +08:00

10 lines
162 B
TypeScript

let globalZIndex = 2000
export function useGlobalZIndex() {
return ++globalZIndex
}
export function setGlobalZIndex(value: number) {
globalZIndex = value
}