Skip to content

Instantly share code, notes, and snippets.

@MartinMalinda
Last active August 8, 2021 10:14
Show Gist options
  • Save MartinMalinda/0b742ecf302cb9626deaaa1d26594e9a to your computer and use it in GitHub Desktop.
Save MartinMalinda/0b742ecf302cb9626deaaa1d26594e9a to your computer and use it in GitHub Desktop.
<script lang="ts">
import { nextTick } from 'vue';
export default {
setup() {
const shouldRender = ref(false);
nextTick(() => {
shouldRender.value = true;
});
return { shouldRender };
}
}
</script>
<template>
<div>
<slot v-if="shouldRender" />
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment