Re: [w3c/webcomponents] Anonymous custom elements 匿名自定义组件 (#842)

I think this is a wonderful idea. We have to determine how it should affect `.innerHTML` vs in the element inspector.

What about just not including the element in .innerHTML?

## inspector
```html
<div>
  <#MyComponent>
    <span/>
  </#MyComponent>
</div>
```

## innerHTML
```
<div>
  <span></span>
</div>
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/842#issuecomment-562814449

Received on Saturday, 7 December 2019 04:57:21 UTC