1
0

Loading.vue 696 B

1234567891011121314151617181920212223242526
  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. <div class="flex flex-col gap-4 p-5 text-gray-600 font-medium text-3xl font-medium tracking-widest">
  20. <h2 class="block">Your wallet is loading,</h2>
  21. <h2 class="block">please wait a moment...</h2>
  22. </div>
  23. </template>