Web components


template 코드

<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>&lt;component-test&gt;</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">&lt;component-test2</span> </template>

테스트

클릭시 요소 생성일시을 알려줍니다. slot2 slot3 slot1 slot3 slot1-같은 명칭으로 여러개 사용가능 slot1-1 slot1-2 slot1-3 코멘트. 이 값은 안보입니다. 커스텀 엘레멘트 속에서 다른 커스텀 엘레멘트 사용

extends:'p' 와 is="component-test3" 를 사용 asd