This commit is contained in:
ari
2025-11-20 16:25:35 +07:00
parent 5166229d06
commit bbdaeee304
3 changed files with 54 additions and 21 deletions
+13
View File
@@ -0,0 +1,13 @@
<script setup lang="ts">
definePageMeta({
layout: 'blank',
public: true,
})
const test = useRoute()
const temp = test.hash
</script>
<template>
<span>success {{ temp }}</span>
</template>