Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Ember CLI 的新手,我不知道如何在我的应用程序中添加我自己的 util 文件。
我想将此summernote.js文件添加到我的项目中。
如何使用 Ember CLI 将此文件添加到组件中?
您需要import在组件文件中使用关键字。示例app/components/my-component:
import
app/components/my-component
import Ember from 'ember'; import MyUtil from '../utils/my-util'; // ... you can use MyUtil here // ... rest of file