使用Polymer 1.x我尝试创建如下的dom模块:
<dom-module id="template-me">
<template>
<!-- local DOM styles -->
<style>
div { color: red }
</style>
<div>This is local DOM</div>
</template>
<script>
Polymer({is: "template-me"});
</script>
</dom-module>
问题在于,在运行时我得到了错误&#34;无法找到变量Polymer&#34;?有谁知道为什么?
答案 0 :(得分:1)
如果这是所有代码,则缺少应该在模块之前的链接元素。
<link rel="import" href="../polymer/polymer.html">
<dom-module id="template-me">
<template>
...
答案 1 :(得分:0)
仔细检查您的聚合物导入代码和路径。以下是使用来自repo的template-me
的{{1}}的工作演示。
polymer.html
&#13;