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