作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个在其中使用 npm 包的模板项目,是否有任何选项可以在模板项目中添加一个 npm 包。我在很长一段时间内寻找解决方案的任何建议。
这就是我在 angular 中使用 ck-editor 的方式
<ck-editor name="editor" #myEditor [(ngModel)]="templateSetValue.template_content"
(change)="handleEditorData($event)">
</ck-editor>
是否可以使用相同的模板项目 https://www.npmjs.com/package/ngx-ckeditor
最佳答案
不确定我是否正确理解了这个问题,但是要在您的 Stencil.js 项目中从 npm 添加一个包,您可以像在任何其他节点项目中一样安装它:
npm install <some-package>
例如nprogress
:
npm install nprogress @types/nprogress
然后将其导入您的代码中
import nprogress from 'nprogress';
nprogress.start();
// ...
关于stenciljs - 如何在 stencil js 项目中添加 npm 包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63086943/
我是一名优秀的程序员,十分优秀!