我将所有Polymer元素更新到最新版本,现在我自己的元素不再显示了。
头脑中:
<link rel="import" href="my-elements/my-test/my-test.html">
身体:
<my-test></my-test>
元素代码:
<dom-module id="my-test">
<template>
<style>
:host {
position: relative;
height: 100px;
width: 200px;
background-color: #000;
color: #FFF;
}
</style>
<div>Huhu</div>
</template>
<script>
Polymer({
is: "my-test"
});
</script>
<paper-checkbox></paper-checkbox>
等所有其他元素仍然有效。发生了什么变化?