all repos — gomponents @ 2e44d495769421423921bfcb06ebfc53f8370dd3

HTML components in pure Go

Add web component elements and slot attribute (#235) The slot attribute is a standard attribute for use with web components: https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots

Ken Powers
commit

2e44d495769421423921bfcb06ebfc53f8370dd3

parent

87bb2f37cb56ea53aafb06d5e264935a49e65bd6

1 file changed, 4 insertions(+), 0 deletions(-)

changed files
M html/attributes.gohtml/attributes.go
@@ -133,6 +133,10 @@ func DataAttr(name, v string) g.Node {
return Data(name, v) } +func SlotAttr(v string) g.Node { + return g.Attr("slot", v) +} + func For(v string) g.Node { return g.Attr("for", v) }