我需要在多个 Polymer 元素之间共享样式。创建一个“styles.html”文件然后将其导入我的不同元素是否可以接受,或者随着应用程序的增长这会开始对性能产生影响吗?我知道 0.5 有一个核心样式,但如果导入也能正常工作,这似乎是不必要的。
样式.html
<style>
button {
background: red;
}
</style>
我的按钮.html
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../styles/main-styles.html">
<link rel="import" href="../behaviors/mixins.html">
<dom-module id="my-button">
<template>
<button>{{text}}</button>
</template>
</dom-module>
<script>
Polymer({
is: 'my-button',
behaviors: [ButtonBehavior]
})
</script>