zoukankan      html  css  js  c++  java
  • Ionic4.x 中自定义公共模块

    1、创建公共模块以及组件

    ionic g module module/slide
    ionic g component module/slide

    2、公共模块 slide.module.ts 中暴露对应的组件

    import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { SlideComponent } from './slide.component';
    
    @NgModule({
      declarations: [SlideComponent],
      imports: [
        CommonModule
      ],
      exports:[SlideComponent]
    })
    export class SlideModule { }

    3、用到的地方引入自定义模块,并依赖注入自定义模块

    import { SlideModule } from '../module/slide/slide.module';
    @NgModule({ imports: [
    CommonModule, FormsModule,
    IonicModule,
    SlideModule, RouterModule.forChild(routes)
    ],
    declarations: [Tab4Page] })

    4、使用自定义模块

    <app-slide></app-slide>

    Ionic4.x 自定义公共模块中使用 ionic 内 置组件

    import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { SlideComponent } from './slide.component';
    import{IonicModule} from '@ionic/angular';
    
    @NgModule({
      declarations: [SlideComponent],
      imports: [
        CommonModule,
        IonicModule
      ],
      exports:[SlideComponent]
    })
    export class SlideModule { }
  • 相关阅读:
    2020.4.10个人总结
    CG-CTF simple machine
    CG-CTF Our 16bit wars
    CG-CTF Our 16bit Games
    CG-CTF single
    CG-CTF WxyVM2
    Go Channel 详解
    Go语言TCP Socket编程
    golang mysql demo
    YouCompleteMe unavailable: requires Vim compiled with Python 2.x support
  • 原文地址:https://www.cnblogs.com/loaderman/p/10948493.html
Copyright © 2011-2022 走看看