29 lines
555 B
JavaScript
29 lines
555 B
JavaScript
|
import {
|
||
|
computed,
|
||
|
onMounted,
|
||
|
readonly,
|
||
|
shallowRef
|
||
|
} from "./chunk-PD2AWGJV.js";
|
||
|
|
||
|
// node_modules/vuetify/lib/composables/ssrBoot.mjs
|
||
|
function useSsrBoot() {
|
||
|
const isBooted = shallowRef(false);
|
||
|
onMounted(() => {
|
||
|
window.requestAnimationFrame(() => {
|
||
|
isBooted.value = true;
|
||
|
});
|
||
|
});
|
||
|
const ssrBootStyles = computed(() => !isBooted.value ? {
|
||
|
transition: "none !important"
|
||
|
} : void 0);
|
||
|
return {
|
||
|
ssrBootStyles,
|
||
|
isBooted: readonly(isBooted)
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
useSsrBoot
|
||
|
};
|
||
|
//# sourceMappingURL=chunk-VDFYLV2V.js.map
|