Skip to content

Instantly share code, notes, and snippets.

View siaikin's full-sized avatar
🌴
On vacation

siaikin1 siaikin

🌴
On vacation
View GitHub Profile
@loilo
loilo / pass-slots.md
Last active July 4, 2025 09:46
Vue: Pass Slots through from Parent to Child Components

Vue: Pass Slots through from Parent to Child Components

The Situation

  • We've got some components A, B and C which provide different slots.
    const A = {
      template: `<div><slot name="a">Default A Content</slot></div>`
    }

const B = {