Bets.vue 754 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <script setup>
  2. import { ref } from 'vue'
  3. /* Initialize stores. */
  4. import { useSystemStore } from '@/stores/system'
  5. /* Initialize System. */
  6. const System = useSystemStore()
  7. defineProps({
  8. msg: String,
  9. })
  10. const count = ref(0)
  11. </script>
  12. <template>
  13. <main class="grid grid-cols-3">
  14. <section class="px-3 py-1">
  15. <h2 class="text-xl font-medium">
  16. My bets
  17. </h2>
  18. </section>
  19. <section class="px-3 py-1">
  20. <h2 class="text-xl font-medium">
  21. All bets
  22. </h2>
  23. </section>
  24. <section class="px-3 py-1">
  25. <h2 class="text-xl font-medium">
  26. Recent Spotlight
  27. </h2>
  28. </section>
  29. </main>
  30. </template>