我在聚合物0.8中创建了自定义元素,但没有显示工作空白屏幕,我在Google-Chrome,Firefox和Opera上测试了它。所有浏览器都会更新。 这是代码:
的index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Polymer 0.8 Test</title>
<link rel="import" href="bower_components/webcomponentsjs/webcomponents-lite.js" >
<link rel="import" href="my-element.html">
</head>
<body>
<my-element></my-element>
</body>
</html>
和“my-element.html”
<link rel="import" href="bower_components/polymer/polymer.html">
<dom-module id="my-element">
<template>
<div>Hello World With Polymer 0.8</div>
</template>
</dom-module>
<script>
Polymer({
is:"my-element"
})
</script>
答案 0 :(得分:0)
问题解决了问题是xampp现在还可以。