mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
12 lines
219 B
Vue
12 lines
219 B
Vue
<template>
|
|
<div>
|
|
<div id="content">
|
|
Hello {{ Object.keys($route.query).join(' ') }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
await new Promise(resolve => setTimeout(resolve, 200))
|
|
</script>
|