StaticKeyItem.vue 148 B

123456789
  1. <script setup vapor lang="ts">
  2. defineProps<{
  3. text: string
  4. }>()
  5. </script>
  6. <template>
  7. <h1 style="position: absolute">{{ text }}</h1>
  8. </template>