Item.vue 442 B

12345678910111213141516171819
  1. <script setup lang="ts">
  2. /* Define properties. */
  3. const props = defineProps({
  4. title: String,
  5. value: String,
  6. })
  7. </script>
  8. <template>
  9. <main class="w-fit px-3 py-2 bg-indigo-200 border-2 border-indigo-400 rounded-lg shadow-md">
  10. <h4 class="text-sm text-gray-500 font-medium uppercase">
  11. {{title}}
  12. </h4>
  13. <h2 class="text-2xl font-medium">
  14. {{value}}
  15. </h2>
  16. </main>
  17. </template>