mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
10 lines
158 B
Vue
10 lines
158 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{ promise: Promise<void> }>()
|
|
|
|
await props.promise
|
|
</script>
|
|
|
|
<template>
|
|
<div>resolved</div>
|
|
</template>
|