UNPKG

@shopware/cms-base-layer

Version:
12 lines (10 loc) 290 B
import { defineComponent, onMounted, ref } from "vue"; export const ClientOnly = defineComponent({ setup(_, { slots }) { const init = ref(false); onMounted(() => { init.value = true; }); return () => (init.value && slots.default ? slots.default() : null); }, });