next/pages/index.vue

9 lines
137 B
Vue
Raw Normal View History

<script setup lang="ts">
const { data } = useAuth();
console.debug("dat->", data);
</script>
<template>
<div>hello</div>
</template>