2014-07-18 78 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>