0
ポリマーに新しいです。私はコンポーネントのappタグを作成しました。インラインHTMLポリマーの外部テンプレートをインポートします。
<link rel="import" href="https://polygit.org/polymer+^1.9.1/webcomponentsjs+^0.7.0/components/polymer/polymer.html">
<dom-module id="app-tag">
<template>
<style></style>
<h1 class="head-mine">This is the name Tag</h1>
</template>
</dom-module>
<script src="app_tag.js"></script>
正常に動作します。しかし、私のテンプレートが非常に大きい場合、私はseoerate htmlファイルを使用してそれを使用したいと思います。どうすればこの問題を解決できますか?
こんにちはVijayyesを使用しています。 Polymerは、すべてのコンポーネントに対して新しいファイルを作成します。 –