mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
14 lines
279 B
Vue
14 lines
279 B
Vue
<template>
|
|
<template v-if="isMounted"><slot /></template>
|
|
<template v-else><slot name="placeholder" /></template>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, onMounted } from 'vue'
|
|
|
|
const isMounted = ref(false)
|
|
onMounted(() => {
|
|
isMounted.value = true
|
|
})
|
|
</script>
|