1
0

_blank.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <script setup lang="ts">
  2. useHead({
  3. title: `Blank — LibreScript`,
  4. meta: [
  5. { name: 'description', content: `A succinct language for embedding web & mobile application data within a blockchain.` }
  6. ],
  7. })
  8. /* Initialize stores. */
  9. import { useSystemStore } from '@/stores/system'
  10. const System = useSystemStore()
  11. // onMounted(() => {
  12. // console.log('Mounted!')
  13. // // Now it's safe to perform setup operations.
  14. // })
  15. // onBeforeUnmount(() => {
  16. // console.log('Before Unmount!')
  17. // // Now is the time to perform all cleanup operations.
  18. // })
  19. </script>
  20. <template>
  21. <Header />
  22. <main class="max-w-5xl mx-auto py-5 flex flex-col gap-4">
  23. <h1 class="text-5xl font-medium">
  24. Blank
  25. </h1>
  26. <p>
  27. Lorem, ipsum dolor sit amet consectetur adipisicing elit. Id eius voluptatem minus natus at eveniet dolorum eos mollitia, maxime animi excepturi harum omnis illum odit recusandae pariatur! Unde, explicabo molestias.
  28. </p>
  29. </main>
  30. <Footer />
  31. </template>