Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
so1ve committed Jul 2, 2023
1 parent 2b262b5 commit 31be12b
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<script setup lang="ts">
import { defineAsyncComponent } from 'vue';
const ReloadPrompt =
typeof window !== 'undefined'
? defineAsyncComponent(() => Promise.resolve({}))
: undefined;
</script>

<template>
<template v-if="ReloadPrompt">
<ReloadPrompt />
</template>
</template>

0 comments on commit 31be12b

Please sign in to comment.