mayu-live / framework

Mayu is a live updating server-side component-based VDOM rendering framework written in Ruby
https://mayu.live
GNU Affero General Public License v3.0
130 stars 4 forks source link

Support `<slot>` #31

Closed aalin closed 1 year ago

aalin commented 1 year ago

https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_templates_and_slots

It would be more convenient to do:

%div
  %Foo
    %Bar(slot="bar")

instead of

%div
  - bar =
    %Bar(slot="bar")
  %Foo{bar:}

... which is the current API...