この 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>