如何在 angular 2 应用程序中使用 npm 安装工具提示的 qtip2?
How to install qtip2 for tooltip using npm in angular 2 application?
我正在尝试在我的 angular2 应用程序中安装 qtip2,但每次我这样做时,它都会显示错误 like this
我在 google 中进行了搜索,但找不到任何关于如何使用 npm 工具提示安装 qtip2 JQuery 插件的解决方案。
我尝试用版本 2.0.3 更新 JQuery,因为错误显示并更新了 npm,但仍然没有任何帮助。
先试试:
1:
npm install jsdom
2:
npm install jquery
3:
npm install qtip2
在 package.json
中,您将拥有这些依赖项......以及其他
"dependencies": {
"jquery": "^3.2.1",
"jsdom": "^11.3.0"
}
我正在尝试在我的 angular2 应用程序中安装 qtip2,但每次我这样做时,它都会显示错误 like this
我在 google 中进行了搜索,但找不到任何关于如何使用 npm 工具提示安装 qtip2 JQuery 插件的解决方案。
我尝试用版本 2.0.3 更新 JQuery,因为错误显示并更新了 npm,但仍然没有任何帮助。
先试试:
1:
npm install jsdom
2:
npm install jquery
3:
npm install qtip2
在 package.json
中,您将拥有这些依赖项......以及其他
"dependencies": {
"jquery": "^3.2.1",
"jsdom": "^11.3.0"
}