mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +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>
|
|
|