我定义了一个组件“ test-component-wrapper”,其中viewencapsulation设置为none。其模板只有一个
<ng-content></ng-content>>
我还使用此模板定义了一个“测试组件项目”
<div>Some text</div>
在故事书中,我尝试使用此模板创建一个故事
<test-component-wrapper>
<test-component-item class="testClass">
</test-component-item>
</test-component-wrapper>
但是它不起作用... dom未渲染。如果我添加这个故事而不上课,它将起作用。我尝试直接在角度项目中这样做,并添加了类。我该怎么解决?