mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
1 line
757 B
HTML
1 line
757 B
HTML
<!doctype html><meta charset=utf-8><title>element-details - web component using <template> and <slot></title><style>dl{margin-left:6px}dt{font-weight:700;color:#217ac0;font-size:110%}dt{font-family:Consolas,"Liberation Mono",Courier}dd{margin-left:16px}</style><h1>element-details - web component using <code><template></code> and <code><slot></code></h1><template id=element-details-template-1> VALUE: !<slot>?</slot>! </template> <element-details> <span>test</span> <span>foo</span> </element-details> <script>customElements.define("element-details",class extends HTMLElement{constructor(){super();let e=document.getElementById("element-details-template-1").content,t=this.attachShadow({mode:"open"}).appendChild(e.cloneNode(true))}})</script> |