app-router不在Polymer中呈现模板

时间:2016-09-16 11:07:12

标签: routing polymer

我正在尝试使用app-router作为我的路线,但不知怎的,我无法让它工作......我有一个成功切换到活动状态的菜单。但是没有内容?我做错了什么?

空DOM

enter image description here

应用路由器

<app-router trailingSlash="ignore">
          <app-route path="/projects" import="/src/pages/view.html"></app-route>
          <app-route path="/admin" import="/src/pages/test.html"></app-route>
 </app-router>

模板     

<polymer-element name="test" attributes="pathArg1 queryParam1" noscript>
<template>
   This is a test
</template>
<script>
    Polymer({
        domReady: function() {

            //attempt to create a template instance...
            var template = this.querySelector('template');
            var content = template.createInstance();
            this.appendChild(content);


        }
    });
</script>

0 个答案:

没有答案