要向Ionic 4/Apollo GraphQL应用程序添加标题,您可以按照以下步骤进行操作:
import { Component, Input } from '@angular/core';
import { NavController } from '@ionic/angular';
@Component({
selector: 'app-title',
templateUrl: './title.component.html',
styleUrls: ['./title.component.scss'],
})
export class TitleComponent {
@Input() title: string;
constructor(private navCtrl: NavController) { }
}
<ion-header>
<ion-toolbar>
<ion-title>{{ title }}</ion-title>
</ion-toolbar>
</ion-header>
<app-title title="首页"></app-title>
这样,您就成功地向Ionic 4/Apollo GraphQL应用程序添加了标题。请注意,这只是一种实现方式,您可以根据自己的需求进行调整和扩展。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云