roundedTitle.vue 171 B

12345678910111213
  1. <script setup>
  2. </script>
  3. <template>
  4. <div class="w-full py-4 bg-white text-3xl rounded px-2 cursor-default">
  5. <slot></slot>
  6. </div>
  7. </template>
  8. <style scoped>
  9. </style>