Uncaught DOMException: Failed to execute 'define' on 'CustomElementRegistry': "componenttest" is not a valid custom element name
처럼 에러남<template id="template-component-test">
<style>
.node-wrap{color:red; border:2px solid #999; padding:5px; margin:5px; border-radius: 0.5em;}
.node-wrap:hover{filter:sepia(1) hue-rotate(200deg); background-color: #eee;}
.slot-wrap{display: inline-block; color: #000;}
</style>
<div class="node-wrap">
<b><component-test></b> 는 자동으로 내용이 바뀝니다.
<div class="slot-wrap">(<slot name="slot1">slot1 값이 없습니다.</slot>)</div>
<div class="slot-wrap">(<slot name="slot2">slot2 값이 없습니다.</slot>)</div>
<div class="slot-wrap">(<slot name="slot3">slot3 값이 없습니다.</slot>)</div>
</div>
</template>
<template id="template-component-test2">
<style>
.node-wrap{color:blue; border:2px solid #999; padding:5px; margin:5px; border-radius: 10em; display: inline-block;}
</style>
<span class="node-wrap"><component-test2</span>
</template>
extends:'p' 와 is="component-test3" 를 사용 asd