10
Polymer 요소와 AngularJS 지시문의 차이점은 무엇입니까?
Polymer Getting Started ( 폴리머 시작하기) 페이지에 폴리머의 예가 표시됩니다. <html> <head> <!-- 1. Shim missing platform features --> <script src="polymer-all/platform/platform.js"></script> <!-- 2. Load a component --> <link rel="import" href="x-foo.html"> </head> <body> <!-- 3. Declare the component by its tag. --> <x-foo></x-foo> </body> </html> 주목할 것은 and에 <x-foo></x-foo>의해 정의되는 것 …