mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
15 lines
178 B
Vue
15 lines
178 B
Vue
|
<script setup lang="ts">
|
||
|
await new Promise((resolve) => {
|
||
|
setTimeout(() => {
|
||
|
resolve()
|
||
|
}, 2000)
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
test component
|
||
|
</div>
|
||
|
</template>
|
||
|
|