Column.vue 310 B

12345678910111213141516
  1. <template>
  2. <div class="[&>:first-child]:mt-0 [&>:last-child]:mb-0"
  3. :class="{
  4. 'xl:sticky xl:top-24': sticky
  5. }">
  6. <ContentSlot :use="$slots.default"/>
  7. </div>
  8. </template>
  9. <script setup>
  10. const props = defineProps({
  11. sticky: {
  12. default: false
  13. }
  14. })
  15. </script>