doc.yeswiki.pro/node_modules/vitepress/dist/client/app/components/ClientOnly.js
2023-05-20 19:38:02 +03:00

10 lines
314 B
JavaScript

import { defineComponent, ref, onMounted } from 'vue';
export const ClientOnly = defineComponent({
setup(_, { slots }) {
const show = ref(false);
onMounted(() => {
show.value = true;
});
return () => (show.value && slots.default ? slots.default() : null);
}
});