Blank.vue 485 B

12345678910111213141516171819202122232425262728
  1. <script setup lang="ts">
  2. const props = defineProps({
  3. data: {
  4. type: [Object],
  5. },
  6. title: String,
  7. })
  8. // onMounted(() => {
  9. // console.log('Mounted!')
  10. // // Now it's safe to perform setup operations.
  11. // })
  12. // onBeforeUnmount(() => {
  13. // console.log('Before Unmount!')
  14. // // Now is the time to perform all cleanup operations.
  15. // })
  16. </script>
  17. <template>
  18. <main class="">
  19. <h1 class="">
  20. Blank
  21. </h1>
  22. </main>
  23. </template>