freeblox/app/pages/index.vue

14 lines
337 B
Vue

<template>
<div>
<h1>Nuxt Routing set up successfully!</h1>
<p class="text-green-500">Current route: {{ route.path }}</p>
<a href="https://nuxt.com/docs/getting-started/routing" target="_blank"
>Learn more about Nuxt Routing</a
>
</div>
</template>
<script setup lang="ts">
const route = useRoute();
</script>