定制聚合物元素不再显示

时间:2015-09-30 21:25:24

标签: polymer

我将所有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>等所有其他元素仍然有效。发生了什么变化?

0 个答案:

没有答案
相关问题