43 lines
568 B
Vue
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
<!--
Usage:
```md
---
layout: two-cols
---
# Left
This shows on the left
::right::
# Right
This shows on the right
```
-->
<script setup lang="ts">
const props = defineProps({
class: {
type: String,
},
layoutClass: {
type: String,
},
})
</script>
<template>
<div class="slidev-layout two-columns w-full h-full grid grid-cols-2" :class="props.layoutClass">
<div class="col-left" :class="props.class">
<slot />
</div>
<div class="col-right" :class="props.class">
<slot name="right" />
</div>
</div>
</template>