1
0

index.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <main class="p-3 grid grid-cols-1 lg:grid-cols-2 gap-4 bg-yellow-200">
  3. <DashboardCalendar class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  4. <DashboardFeatured class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  5. <DashboardFeeds class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  6. <DashboardGoals class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  7. <!-- <DashboardHighlights class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" /> -->
  8. <!-- <DashboardNewcomers class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" /> -->
  9. <!-- <DashboardTodo class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" /> -->
  10. <DashboardTrends class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  11. <DashboardUpdates class="p-3 border-4 border-yellow-400 bg-yellow-100 rounded-lg" />
  12. </main>
  13. </template>
  14. <script>
  15. export default {
  16. data: () => {
  17. return {
  18. showMenu: null,
  19. }
  20. },
  21. head: () => ({
  22. title: 'APECS — Crypto Builders Hub',
  23. meta: [
  24. {
  25. hid: 'description', // `vmid` for it as it will not work
  26. name: 'description',
  27. content: `An uncensorable, multi-chain platform for P2P electronic cash Builders to do what they need to do.`
  28. }
  29. ]
  30. }),
  31. methods: {
  32. toggleMenu() {
  33. this.showMenu = !this.showMenu
  34. },
  35. },
  36. created: function () {
  37. this.showMenu = true
  38. },
  39. mounted: function () {
  40. //
  41. }
  42. }
  43. </script>