Rendering a template from the imports folder in Meteor
问题 From what I understand, the purpose of the imports folder is to store all your code that you import into main.js in the client folder. I'm trying to implement easysearch:autosuggest and I got a basic example working with the following in my main.html on the client folder: <body> <div id="render-target"></div> <div> {{>searchBox}} </div> </body> <template name="searchBox"> <div class="autosuggest-component"> {{> EasySearch.Autosuggest index=PlayersIndex}} </div> </template> In my main.js in