1

我正在创建一个在其中使用 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

4

1 回答 1

3

不确定我是否正确理解了这个问题,但是要在您的 Stencil.js 项目中从 npm 添加一个包,您可以像在任何其他节点项目中一样安装它:

npm install <some-package>

例如nprogress

npm install nprogress @types/nprogress

然后将其导入您的代码中

import nprogress from 'nprogress';

nprogress.start();

// ...
于 2020-07-25T19:42:51.807 回答