我一直试图链接两个页面。但是,每当我点击链接转到另一个页面时,它就会在同一页面中呈现模板。
第一个模板。
<template name = "home">
<p>Hello, {{emailAddress}}</p>
<a href="/create">To create</a>
<p><a href="#" class="logout">Click to Log out</a></p>
</template>
第二个模板。
<head>
<title>Create your page here</title>
</head>
<body>
{{> create}}
</body>
<template name = "create">
<p>Hi, create your page here!!</p>
</template>
和router.js文件是..
this.route('create',{
path:'/create',
});
它是什么的快照,在图像中。 http://imgur.com/Ss4tanl