UNPKG

vue3-ui-preloader

Version:

Vue3 preloader component made with CSS transistions and animations, easy to use, integrate and customize.

13 lines (12 loc) 258 B
export default { mounted() { if (this.disableScrolling) { document.body.classList.add("overflowHidden"); } }, unmounted() { if (this.disableScrolling) { document.body.classList.remove("overflowHidden"); } } };