如何在故事书中向角组件添加类?

时间:2020-10-06 17:25:31

标签: angular storybook angular-storybook

我定义了一个组件“ 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未渲染。如果我添加这个故事而不上课,它将起作用。我尝试直接在角度项目中这样做,并添加了类。我该怎么解决?

0 个答案:

没有答案