使用新的1.3模块功能在Blaze中导入动态模板的最佳做法是什么?我们是否应该将每个可能的子模板导入到我们动态调用的模板中?如果我在主布局模板中有100个不同的路径调用动态子模板怎么办?
例如,我必须像这样编码吗?
import 'template1.js';
import 'template2.js';
import 'template3.js';
import 'template4.js';
//can be more.....
let navItems = ['template1', 'template2', 'template3', 'template4', ....];

<ul>
{{#each navItems}}
<li>
{{> UI.dynamic template=this}}
</li>
{{/each}}
</ul>
&#13;