标签: ember-cli ember-cli-addons
我是Ember CLI的新手,我不知道如何在我的应用中添加自己的util文件。
我想将此summernote.js文件添加到我的项目中。
如何使用Ember CLI将此文件添加到组件?
答案 0 :(得分:0)
您需要在组件文件中使用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