2017-10-26 13 views
0

나는 다음 한 조각을 작동하지 않습니다.폴리머 2.0 IE11 템플릿은 그것을 잘 보여줍니다 크롬에서 내 페이지</p> <pre><code> <template is="dom-if" if="[[buttonCancel]]"> <paper-button> <slot name="dialog__slot-cancel-button"></slot> </paper-button> </template> </code></pre> <p>에 함께

IE11에서는 buttonCancel이 true 임에도 불구하고 버튼이 표시되지 않습니다.

 <template is="dom-if" if="[[buttonCancel]]"> 
      TEST TEST TEST 
     </template> 

잘 IE11에서 "시험 시험 시험"을 보여줍니다

 <paper-button> 
      <slot name="dialog__slot-cancel-button"></slot> 
     </paper-button> 

쇼도 잘

다른 사람이 같은 문제를 봤어 :(하지 않는 두의 조합?

답변

0

이것은 도움이되었습니다.

 <template restamp is="dom-if" if="[[buttonCancel]]"> 
     <paper-button> 
      <div> 
      <slot name="dialog__slot-cancel-button"></slot> 
      </div> 
     </paper-button> 
     </template>