不能使用{{>loginButtons}}与Meteor和Ionic

Can't use {{> loginButtons}} with Meteor and Ionic

本文关键字:Ionic Meteor loginButtons 不能      更新时间:2023-09-26

我想让我的用户登录/注册在我的流星/Ionic应用程序。我认为这将是容易的,因为我使用简单的{{> loginButtons}},但它给了我一个错误Uncaught Error: No such template: loginButtons在控制台。我的代码是

<div class="bar bar-footer">
<button class="button button-clear">{{> loginButtons}}</button>
<div class="title">Start using!</div>
<button class="button button-clear">{{> loginButtons}}</button>

当然,我已经安装了所有必要的软件包(例如meteoric:ionic和通过社交网络进行授权的软件包)。所以我该怎么做这个功能(我对所有这些东西都是新手)?如有任何帮助,不胜感激。

在一些帮助下,我找到了问题所在。我忘记添加accounts-ui包了。