Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Accordion 的右侧添加一些自定义按钮,为此我需要覆盖 ng-bootstrap Accordion 模板。我们如何在 Angular 2 中做到这一点?
您必须首先复制该组件的整个代码,然后根据您的要求进行一些编辑,然后使用该组件(相对路径)而不是直接使用该组件node_modules等。
node_modules
例如,通常我们使用像
import { abc } from 'ng-bootstrap/ng-bootstrap';
比像这样导入这个组件
import { abc } from 'Relative_path_from_folder';