1
0

Exchange.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <main class="p-10">
  3. <h1 class="text-3xl">Exchange BCH &lt;=&gt; SBCH</h1>
  4. <a
  5. class="block mt-5 hover:underline"
  6. href="https://www.hop.cash/"
  7. target="_blank"
  8. >
  9. <span class="block text-gray-800 text-xl font-bold">HOP.CASH</span>
  10. <span class="block text-blue-500 font-medium">anonymous</span>
  11. </a>
  12. <a
  13. class="block mt-5 hover:underline"
  14. href="https://wagon.cash/"
  15. target="_blank"
  16. >
  17. <span class="block text-gray-800 text-xl font-bold">WAGON.CASH</span>
  18. <span class="block text-blue-500 font-medium">anonymous</span>
  19. </a>
  20. </main>
  21. </template>
  22. <script>
  23. export default {
  24. data: () => {
  25. return {
  26. //
  27. }
  28. },
  29. created: async function () {
  30. /* Retrieve session. */
  31. // const session = await this.hasSession()
  32. // .catch(err => console.error('Session Error:', err))
  33. /* Validate session. */
  34. // if (!session) {
  35. // return
  36. // }
  37. },
  38. mounted: function () {
  39. //
  40. },
  41. }
  42. </script>