next/pages/story/[id]/index.vue

6 lines
114 B
Vue
Raw Normal View History

<script lang="ts" setup>
const r = useRoute();
await navigateTo(`${r.path}/1`);
</script>
<template></template>