我想在我的项目中使用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';
但这也行不通。我不知道该怎么做。