1
0

SponsorHeading.vue 617 B

12345678910111213141516171819202122232425
  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 class="mt-4 lg:mt-12 -mb-8 w-full h-32 bg-gray-800 rounded-2xl border-2 border-amber-400">
  20. <!-- Banner Goes Here -->
  21. </main>
  22. </template>