关于ionic2 更新到ionic3 后组件不能用的解决方案
Posted 中小文
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于ionic2 更新到ionic3 后组件不能用的解决方案相关的知识,希望对你有一定的参考价值。
错误代码就不贴出来了,直接上代码吧!
首先在xx.module.ts添加
1.import { CUSTOM_ELEMENTS_SCHEMA } from ‘@angular/core‘;
2.添加 schemas:[
CUSTOM_ELEMENTS_SCHEMA
]
完成后的整体代码是这样的
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from ‘@angular/core‘;
import { IonicPageModule } from ‘ionic-angular‘;
import { GroupBoxComponent } from ‘../../components/group-box/group-box‘;
@NgModule({
declarations: [
GroupBoxComponent,
],
imports: [
IonicPageModule.forChild(GroupBoxComponent),
],
exports: [
GroupBoxComponent
],
schemas:[
CUSTOM_ELEMENTS_SCHEMA
]
})
export class GroupBoxComponentModule {}
别的打发好像不需要做任何修改
以上是关于关于ionic2 更新到ionic3 后组件不能用的解决方案的主要内容,如果未能解决你的问题,请参考以下文章