2017-09-05 1 views

답변

1

CSS 믹스 인을 사용하는 경우에는 CSS 믹스 인 polyfill을 가져와야합니다.

<!-- import CSS mixins polyfill --> 
<link rel="import" href="/bower_components/shadycss/apply-shim.html"> 

출처 : Click here.

또한 가져 오지 않은 custom-style을 사용하고 있습니다. 해당 파일에서 polymer.html도 가져 오지 않으므로 가져 오기가 필요합니다.

<link rel="import" href="/bower_components/polymer/lib/elements/custom-style.html"> 

custom-style

Polymer.Element에 포함되어 있지 않으며 별도로 를 가져와야합니다. custom-stylelegacy polymer.html 가져 오기에 포함되어 있습니다.

Working plunker.

관련 문제