View Source Surface.AST.SlotableComponent (surface v0.8.0)
An AST node representing a standard HTML tag
properties
Properties
* `:module` - the component module
* `:type` - the type of component (i.e. Surface.LiveComponent vs Surface.Component)
* `:slot` - the name of the slot that this component is for
* `:let` - quoted expression representing bindings for this slotable component
* `:props` - the props for this component
* `:directives` - any directives to be applied to this tag
* `:children` - the tag children
* `:meta` - compilation meta data
* `:debug` - keyword list indicating when debug information should be printed during compilation
Link to this section Summary
Link to this section Types
@type t() :: %Surface.AST.SlotableComponent{ debug: [atom()], directives: [Surface.AST.Directive.t()], dynamic_props: Surface.AST.DynamicAttribute.t(), let: Macro.t(), meta: Surface.AST.Meta.t(), module: module(), props: [Surface.AST.Attribute.t()], slot: atom(), slot_entries: %{ :default => [Surface.AST.SlotEntry.t()], optional(atom()) => [Surface.AST.SlotEntry.t()] }, type: module() }