EphemeralDb.vue 838 B

1234567891011121314151617181920212223242526272829303132
  1. <script setup lang="ts">
  2. /* Define properties. */
  3. // https://vuejs.org/guide/components/props.html#props-declaration
  4. const props = defineProps({
  5. data: {
  6. type: [Object],
  7. },
  8. })
  9. // onMounted(() => {
  10. // console.log('Mounted!')
  11. // // Now it's safe to perform setup operations.
  12. // })
  13. // onBeforeUnmount(() => {
  14. // console.log('Before Unmount!')
  15. // // Now is the time to perform all cleanup operations.
  16. // })
  17. </script>
  18. <template>
  19. <main class="flex flex-col gap-5">
  20. <h2 class="text-3xl font-bold text-fuchsia-700">
  21. Ephemeral Database: ZERO Logs
  22. </h2>
  23. <p>
  24. 100% of HYM Club data is stored in "ephemeral" data storage.
  25. Seeders and fast-sync allow Clubs to "spin-up" near instantly, ready to serve the community.
  26. </p>
  27. </main>
  28. </template>