830 B
830 B
name, description
| name | description |
|---|---|
| slot-sugar | Shorthand syntax for layout named slots in multi-column layouts |
Slot Sugar for Layouts
Shorthand syntax for layout named slots.
Standard Vue Slot Syntax
---
layout: two-cols
---
<template v-slot:default>
# Left
This shows on the left
</template>
<template v-slot:right>
# Right
This shows on the right
</template>
Shorthand Syntax
---
layout: two-cols
---
# Left
This shows on the left
::right::
# Right
This shows on the right
Explicit Default Slot
---
layout: two-cols
---
::right::
# Right
This shows on the right
::default::
# Left
This shows on the left
Common Layouts with Slots
two-cols:default(left) andrighttwo-cols-header:default,left,rightimage-left/right:defaultfor content