我需要一些帮助,我有离子3形式。
我找不到替换/替代主要离子包装纸的方法。真正需要这个才能够在离子上使用浮动属性。
如果我不这样做,那么我的问题是组件打包了两次。 即
<custom-wrapper>
<main-wrapper>
<field/>
</main-wrapper>
</custom-wrapper>
我需要做
<custom-wrapper>
<field/>
</custom-wrapper>
我的包装程序的示例代码:
@component({
selector: 'formly-wrapper-mm-form-field',
template:` ++ <ng-template #fieldComponent></ng-template> ++ `,
})
显示以下内容,这意味着正在应用主包装器:
我将这个包装器添加到app.module上,如下:
FormlyModule.forRoot({
wrappers: [
{ name: 'form-field', component: CustomWrapperComponent },
],
}),
但没有完成任务。
感谢您的回复。