vuestic-ui
Version:
Vue 3 UI Framework
16 lines (15 loc) • 357 B
JavaScript
import { i as inject } from "../services/current-app.mjs";
import { V as VaAppCachePluginKey } from "../services/cache/plugin/index.mjs";
const useCache = () => {
const cache = inject(VaAppCachePluginKey);
if (!cache) {
return {
colorContrast: {}
};
}
return cache;
};
export {
useCache as u
};
//# sourceMappingURL=useCache.mjs.map