News.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. // onMounted(() => {
  11. // console.log('Mounted!')
  12. // // Now it's safe to perform setup operations.
  13. // })
  14. // onBeforeUnmount(() => {
  15. // console.log('Before Unmount!')
  16. // // Now is the time to perform all cleanup operations.
  17. // })
  18. const count = ref(0)
  19. </script>
  20. <template>
  21. <main class="flex flex-col gap-4">
  22. <p class="px-3 py-2 bg-rose-100 text-sm border border-rose-200 rounded-lg shadow-md">
  23. Thanks for visiting.
  24. This area is still under development and will be updated soon.
  25. </p>
  26. <h2 class="text-2xl font-medium">
  27. What's Coming?
  28. </h2>
  29. <ol class="pl-10 list-disc">
  30. <li>Nexa news &amp; events</li>
  31. <li>Nexa Games news &amp; events</li>
  32. <li>Wally Dice news &amp; events</li>
  33. </ol>
  34. </main>
  35. </template>