如何在我的Ember CLI组件中添加任何外部JavaScript文件?

时间:2016-02-13 16:58:46

标签: ember-cli ember-cli-addons

enter image description here

我是Ember CLI的新手,我不知道如何在我的应用中添加自己的util文件。

我想将此summernote.js文件添加到我的项目中。

如何使用Ember CLI将此文件添加到组件?

1 个答案:

答案 0 :(得分:0)

您需要在组件文件中使用import关键字。示例app/components/my-component

import Ember from 'ember';
import MyUtil from '../utils/my-util';

// ... you can use MyUtil here
// ... rest of file