I'm trying to understand this example
码<link rel="import" href="../../styles/app-theme.html"> <!--Line 22-->
...
<style is="custom-style" include="app-theme"></style> <!--Line 32-->
在第32行中,app-theme
属性的include
值是否指向第22行中的app-theme.html
导入?如果是这样,如果app-theme.html
标记的属性集中某处没有包含<style>
导入,编译器如何发现它的路径?
答案 0 :(得分:1)
它实际上只引用了dom-module
的id以及你想要使用的样式。
<dom-module id="app-theme">
<template>
<style>
.red { color: red; }
</style>
</template>
</dom-module>