使用ES6将jquery-ui导入角度项目

时间:2016-12-28 14:33:19

标签: javascript jquery angularjs jquery-ui ecmascript-6

我想在我的项目中使用angular-ui-sortable,所以我尝试导入jquery-ui,但到目前为止没有运气。当然,在我通过

添加包之前
meteor npm install --save jquery-ui

我尝试使用以下方法导入库:

import 'jquery-ui';

然后将其添加为我的模块中的依赖项

angular.module('myModule', ['jquery-ui']);

但是会出现以下错误:

Error: [$injector:modulerr] Failed to instantiate module jquery-ui due to:
Error: [$injector:nomod] Module 'jquery-ui' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

我也尝试过这样导入

import jqueryui from 'jquery-ui';

但这也行不通。我不知道该怎么做。

0 个答案:

没有答案