我正在努力创造一个简单的“Hello World!”#39;元件。我尝试用凉亭安装聚合物组件,我使用了zip文件。我也使用python和npm HTTP服务器但仍然没有得到任何输出。
<html>
<head>
<title>Polymer</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="elements/hello-world.html">
</head>
<body unresolved>
<hello-world></hello-world>
</body>
</html>
使用元素文件
<link rel="import" href="../bower_components/polymer/polymer-mini.html">
<polymer-element name="hello-world" noscript>
<template>
<h1>Hello World!</h1>
</template>
</polymer-element>
答案 0 :(得分:7)
您使用错误的API来处理聚合物元素。您应该使用像Trevor Dixon所提到的<dom-module>
。
<link rel="import" href="../bower_components/polymer/polymer-mini.html">
<dom-module id="hello-world">
<template>
<h1>Hello World!</h1>
</template>
</dom-module>
<script>
Polymer({
is: 'hello-world'
})
</script>