是否可以将某些HTML页面称为Polymer元素的模板?我看过几个例子,但元素的本地DOM只有HTML标记。我想要这样的东西:
<dom-module id="xyz-element">
<template>
<style>
/* local DOM styles go here */
</style>
<!-- local DOM goes here -->
<import src="any.html"/>
</template>
<script>
Polymer({
is: 'xyz-element',
});
</script>
</dom-module>
提前致谢。
答案 0 :(得分:1)
我认为从版本0.8开始不可能。见How to import template in polymer?
如果您不打算将HTML部分拆分为较小的部分,而只是将其与JS分开,那么您可以改为导入脚本:
<dom-module id="my-module">
<template>
<!-- all of your element's HTML goes here -->
</template>
</dom-module>
<!-- all of your element's JS goes here -->
<script src="my-module.js"></script>