• <small id='2Rbea'></small><noframes id='2Rbea'>

    <i id='2Rbea'><tr id='2Rbea'><dt id='2Rbea'><q id='2Rbea'><span id='2Rbea'><b id='2Rbea'><form id='2Rbea'><ins id='2Rbea'></ins><ul id='2Rbea'></ul><sub id='2Rbea'></sub></form><legend id='2Rbea'></legend><bdo id='2Rbea'><pre id='2Rbea'><center id='2Rbea'></center></pre></bdo></b><th id='2Rbea'></th></span></q></dt></tr></i><div id='2Rbea'><tfoot id='2Rbea'></tfoot><dl id='2Rbea'><fieldset id='2Rbea'></fieldset></dl></div>

        <legend id='2Rbea'><style id='2Rbea'><dir id='2Rbea'><q id='2Rbea'></q></dir></style></legend>
          <bdo id='2Rbea'></bdo><ul id='2Rbea'></ul>
        <tfoot id='2Rbea'></tfoot>
      1. 定制组件 IONIC 4

        时间:2023-09-29
          <bdo id='BtpSI'></bdo><ul id='BtpSI'></ul>

              <i id='BtpSI'><tr id='BtpSI'><dt id='BtpSI'><q id='BtpSI'><span id='BtpSI'><b id='BtpSI'><form id='BtpSI'><ins id='BtpSI'></ins><ul id='BtpSI'></ul><sub id='BtpSI'></sub></form><legend id='BtpSI'></legend><bdo id='BtpSI'><pre id='BtpSI'><center id='BtpSI'></center></pre></bdo></b><th id='BtpSI'></th></span></q></dt></tr></i><div id='BtpSI'><tfoot id='BtpSI'></tfoot><dl id='BtpSI'><fieldset id='BtpSI'></fieldset></dl></div>
                  <tbody id='BtpSI'></tbody>

                • <legend id='BtpSI'><style id='BtpSI'><dir id='BtpSI'><q id='BtpSI'></q></dir></style></legend>

                  <small id='BtpSI'></small><noframes id='BtpSI'>

                  <tfoot id='BtpSI'></tfoot>
                  本文介绍了定制组件 IONIC 4的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个 ionic 应用程序并为 ion-navbar 创建了一个自定义组件,但是,我如何在我的所有页面中使用这个组件?如果我在所有页面上声明他,我会收到此错误

                  I have an ionic app and created a custom component for ion-navbar but, how could I use this component in all of my pages? If I declare him on all the pages i get this error

                  如果你想要 https://github.com/tiagosilveiraa/PManager,这是我的 Githubp>

                  Here's my Github if u want https://github.com/tiagosilveiraa/PManager

                  推荐答案

                  您可以创建一个共享模块,并将该新共享模块作为导入到需要标头的页面模块:

                  You can create a shared module and include that new shared module as an import for the page modules that need the header:

                  shared.module.ts

                  shared.module.ts

                  import { NgModule } from '@angular/core';
                  
                  import {CommonModule} from '@angular/common';
                  import {HeaderComponent} from './header/header.component';
                  import {IonicModule} from '@ionic/angular';
                  
                  @NgModule({
                      imports: [
                          CommonModule,
                          IonicModule
                      ],
                      declarations: [HeaderComponent],
                      exports: [HeaderComponent]
                  })
                  export class SharedModule {}
                  

                  那么对于 home.module.ts

                  Then for the home.module.ts

                  @NgModule({
                    imports: [
                      CommonModule,
                      FormsModule,
                      IonicModule,
                      SharedModule,
                      RouterModule.forChild(routes),  
                    ],
                    declarations: [HomePage]
                  })
                  export class HomePageModule {}
                  

                  这篇关于定制组件 IONIC 4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:暂停 youtube 视频,youtube api 下一篇:将js设置状态从父组件反应到子组件

                  相关文章

                  <i id='40vod'><tr id='40vod'><dt id='40vod'><q id='40vod'><span id='40vod'><b id='40vod'><form id='40vod'><ins id='40vod'></ins><ul id='40vod'></ul><sub id='40vod'></sub></form><legend id='40vod'></legend><bdo id='40vod'><pre id='40vod'><center id='40vod'></center></pre></bdo></b><th id='40vod'></th></span></q></dt></tr></i><div id='40vod'><tfoot id='40vod'></tfoot><dl id='40vod'><fieldset id='40vod'></fieldset></dl></div>
                  <legend id='40vod'><style id='40vod'><dir id='40vod'><q id='40vod'></q></dir></style></legend>

                      • <bdo id='40vod'></bdo><ul id='40vod'></ul>

                      <small id='40vod'></small><noframes id='40vod'>

                    1. <tfoot id='40vod'></tfoot>