在这个 Plunk 中,为什么元素不会x-foo
渲染 HELLO WORLD?.
鉴于更复杂的content-el
似乎iron-data-table
完全正确地导入了一个。我忽略了一些简单的事情吗?请用工作的笨拙回答。
<base href="https://polygit.org/polymer/components/">
<link rel="import" href="polymer/polymer.html">
<script src="webcomponentsjs/webcomponents-lite.min.js"></script>
<dom-module id="x-foo">
<template>
<style></style>
HELLO WORLD
</template>
<script>
(function() {
'use strict';
Polymer({
is: 'x-foo',
});
})();
</script>
</dom-module>