2015-11-01 13 views

回答

1

is -Attribute用於擴展本地的HTML元素:

MyInput = Polymer({ 
    is: 'my-input', 
    extends: 'input', 
    ... 
}); 

,後來

<input is="my-input"> 

您可以找到的文檔here

相關問題