mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
fix(): add custom schema to some more tests that were missed
This commit is contained in:
@ -10,6 +10,6 @@ import { RootPage } from './root-page';
|
|||||||
imports: [
|
imports: [
|
||||||
IonicPageModule.forChild(RootPage)
|
IonicPageModule.forChild(RootPage)
|
||||||
],
|
],
|
||||||
schemas: [CUSTOM_ELEMENTS_SCHEM]
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
})
|
})
|
||||||
export class RootPageModule {}
|
export class RootPageModule {}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, QueryList, ViewChildren, NgModule } from '@angular/core';
|
import { Component, QueryList, ViewChildren, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule, Tab } from '../../../..';
|
import { IonicApp, IonicModule, Tab } from '../../../..';
|
||||||
|
|
||||||
@ -142,6 +142,7 @@ export class TabsPage {
|
|||||||
Tab3,
|
Tab3,
|
||||||
QuesaritoPage,
|
QuesaritoPage,
|
||||||
TabsPage
|
TabsPage
|
||||||
]
|
],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, ViewEncapsulation, NgModule } from '@angular/core';
|
import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../..';
|
import { IonicApp, IonicModule } from '../../../..';
|
||||||
|
|
||||||
@ -49,7 +49,8 @@ export class AppComponent {
|
|||||||
entryComponents: [
|
entryComponents: [
|
||||||
AppComponent,
|
AppComponent,
|
||||||
E2EPage
|
E2EPage
|
||||||
]
|
],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, ViewEncapsulation, NgModule } from '@angular/core';
|
import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../..';
|
import { IonicApp, IonicModule } from '../../../..';
|
||||||
|
|
||||||
@ -95,7 +95,8 @@ export class AppComponent {
|
|||||||
entryComponents: [
|
entryComponents: [
|
||||||
AppComponent,
|
AppComponent,
|
||||||
E2EPage
|
E2EPage
|
||||||
]
|
],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, ViewChild, ElementRef, NgModule } from '@angular/core';
|
import { Component, ViewChild, ElementRef, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule, Platform } from '../../../..';
|
import { IonicApp, IonicModule, Platform } from '../../../..';
|
||||||
|
|
||||||
@ -68,6 +68,7 @@ export class AppComponent {
|
|||||||
entryComponents: [
|
entryComponents: [
|
||||||
AppComponent,
|
AppComponent,
|
||||||
E2EPage
|
E2EPage
|
||||||
]
|
],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
Reference in New Issue
Block a user