문제

How can achieve this for my composite component?

Simple example: when using my component:

<my:myComponent> html code and other components </my:myComponent>

my composite component implementation:

<composite:implementation> <div> <!-- inject html code and other components here --> </div> </composite:implementation>

Can I use decorate somehow?

도움이 되었습니까?

해결책

<composite:implementation>
   <div>
       <composite:insertChildren/>
   </div>
</composite:implementation>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top