Mineable.vue 833 B

12345678910111213141516171819202122232425262728293031
  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. Mineable $HUSH
  22. </h2>
  23. <p>
  24. At least <span class="text-lg font-bold"><span class="text-xl text-rose-500">50%</span> of the Total Supply of $HUSH</span> will be available for PoW token mining (or melted).
  25. </p>
  26. </main>
  27. </template>