_Blank.vue 808 B

123456789101112131415161718192021222324252627282930
  1. <script setup>
  2. import numeral from 'numeral'
  3. /* Initialize stores. */
  4. import { useSystemStore } from '@/stores/system'
  5. const System = useSystemStore()
  6. // onMounted(() => {
  7. // console.log('Mounted!')
  8. // // Now it's safe to perform setup operations.
  9. // })
  10. // onBeforeUnmount(() => {
  11. // console.log('Before Unmount!')
  12. // // Now is the time to perform all cleanup operations.
  13. // })
  14. </script>
  15. <template>
  16. <main class="flex flex-col gap-4">
  17. <h2 class="text-blue-500 text-2xl font-bold">
  18. Blank
  19. </h2>
  20. <p>
  21. Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam debitis, amet enim veniam fugit sequi voluptatum, tempore rem impedit ullam consequuntur quod sint suscipit quibusdam nam? Sit ab illo a.
  22. </p>
  23. </main>
  24. </template>