我想创建一个 ember 组件并将所有相关的组件部分(例如模板、脚本)存储在同一个文件夹中。当前 Ember App Kit 要求将所有组件 js 文件存储在 appkit/components 文件夹中,并将模板文件 (.hba) 存储在 appkit/templates/components 文件夹中。
那是因为命名约定和 appkit 解析器。
有什么办法可以覆盖这种行为。
我的组件文件夹结构目标是。
Foo 文件夹
- 索引.hbs
- index.js
- script2.js
当前文件夹结构
/components/index.js /templates/components/index.hbs