ActivitySummary.vue 823 B

123456789101112131415161718192021222324252627282930313233343536
  1. <script setup lang="ts">
  2. /* Define properties. */
  3. // https://vuejs.org/guide/components/props.html#props-declaration
  4. const props = defineProps({
  5. data: {
  6. type: [Object],
  7. },
  8. })
  9. // onMounted(() => {
  10. // console.log('Mounted!')
  11. // // Now it's safe to perform setup operations.
  12. // })
  13. // onBeforeUnmount(() => {
  14. // console.log('Before Unmount!')
  15. // // Now is the time to perform all cleanup operations.
  16. // })
  17. </script>
  18. <template>
  19. <main aria-labelledby="section-2-title">
  20. <h2 class="sr-only" id="section-2-title">
  21. Activity Summary
  22. </h2>
  23. <div class="overflow-hidden rounded-lg bg-white shadow">
  24. <div class="p-6">
  25. <!-- Your content -->
  26. Activity Summary
  27. </div>
  28. </div>
  29. </main>
  30. </template>