djledda.de main
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

GEMain.tsx 1.3 KiB

2ヶ月前
123456789101112131415161718192021222324252627282930313233
  1. import { RouterLink } from 'vue-router';
  2. export default {
  3. name: 'ge-main',
  4. setup() {
  5. return () => <>
  6. <header>
  7. <h1>Generative Energy</h1>
  8. </header>
  9. <div class="text-slab">
  10. <p>
  11. This page is dedicated to Dr. Raymond Peat († 2022), who has had a profound impact on my health and
  12. my life in general. Hover over the links below for more detail.
  13. </p>
  14. </div>
  15. <div class="text-slab">
  16. <h2>Links</h2>
  17. <ul>
  18. <li>
  19. <RouterLink to={{ name: 'GECalculator' }}>Thyroid Calculator</RouterLink>
  20. <span style="display: none" class="tooltip">Convert to and from grains, set ratios, etc.</span>
  21. </li>
  22. <li>
  23. <RouterLink to={{ name: 'GEDeutsch' }}>Ray Peat Articles in German</RouterLink>
  24. <span style="display: none" class="tooltip">
  25. A selection of articles by Ray that I have translated in my spare time into German.
  26. </span>
  27. </li>
  28. </ul>
  29. </div>
  30. </>
  31. },
  32. };