Aşağıdaki gibi bir Polimer öğesi oluşturdum.Polimer, http sunucusu üzerinde hiçbir şey göstermiyor
merhaba-world.html
<link rel="import" href="../bower_components/polymer/polymer.html">
<dom-module id="hello-world">
<template>
<p><h1>Hello World</h1></p>
</template>
<script>
Polymer ({ is: "hello-world", });
</script>
</dom-module>
şöyle öyle yükler html dosyası:, C (klasöründe mevcut duyuyorum komut isteminde index.html
<!DOCTYPE html>
<html>
<head>
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="elements/hello-world.html">
</head>
<body>
<hello-world></hello-world>
</body>
</html>
: \ Users \ Admin \ polymer \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ dizininde bir http sunucusunu kurdum ve
ile bir sunucuyu kurdumLocalhost başlatılıyor: 8080/index.html boş bir web sayfası gösteriyor. Düzeltilmesi gereken sorun nerede?
Cevabınız için teşekkür ederiz. Bununla birlikte, polimer elemanının 'hello-world.html' yazıldığından bahsetmiştim. Ve 'index.html' buna erişiyor. –