mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
15 lines
246 B
Vue
15 lines
246 B
Vue
|
<script setup lang="ts">
|
||
|
const route = useRoute()
|
||
|
await new Promise(resolve => setTimeout(resolve, 100))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div data-testid="bar">
|
||
|
bar: {{ $route.path }} - {{ route.path }}
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|