2014-07-18 42 views

回答

4

如果你的意思是“没有包括任何聚合物”,那么简短答案将是“否”。否则,以下是using a polymer expression outside of a polymer element的示例:

<!doctype html> 
<html> 

<head> 
    <script src="/components/platform/platform.js"></script> 
    <link href="/components/polymer/polymer.html" rel="import">  
</head> 

<body unresolved> 

    <template is="auto-binding"> 
    1 + 1 is {{1+1}} 
    </template> 

</body> 

</html>