1

それは私だけですか、それともポリマーの最後のリリースで口ひげがトリミングされましたか? 私はこのコード スニペット ( http://jsbin.com/eRimiJo/10/edit ) が先週完全に機能したことを誓います。

<script src="http://www.polymer-project.org/polymer.min.js"></script>

<polymer-element name="test-attr" attributes="width" noscript>
<template>
    <style>
        @host {
            :scope {
              display: block;
              width: {{width}}px;
              height: 100px;
              background-color: black;
              }
            }
        </style>
    <content></content>
    </template>
</polymer-element>

<test-attr width="100">Hello</test-attr>

編集:明らかなタイプミスを削除するために編集

4

1 に答える 1