Skip to content

Instantly share code, notes, and snippets.

View azaleta's full-sized avatar
👁️‍🗨️

azaleta azaleta

👁️‍🗨️
  • Shanghai,China
  • 09:47 (UTC +08:00)
View GitHub Profile
No content.
@azaleta
azaleta / pass-slots.md
Created April 12, 2021 03:15 — forked from loilo/pass-slots.md
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 = {