1

在此处输入图像描述

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

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

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

4

1 回答 1

0

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

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

// ... you can use MyUtil here
// ... rest of file
于 2016-02-13T18:38:30.133 回答