如何为传输组件自定义左标题?

时间:2019-06-20 07:43:18

标签: javascript reactjs antd

有没有办法将以下传输组件中显示的文本从import { BrowserModule } from '@angular/platform-browser'; import { RouteReuseStrategy, RouterModule } from '@angular/router'; import { IonicModule, IonicRouteStrategy } from '@ionic/angular'; import { SplashScreen } from '@ionic-native/splash-screen/ngx'; import { StatusBar } from '@ionic-native/status-bar/ngx'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; @NgModule({ declarations: [AppComponent], entryComponents: [], imports: [BrowserModule, RouterModule, IonicModule.forRoot(), AppRoutingModule], providers: [ StatusBar, SplashScreen, { provide: RouteReuseStrategy, useClass: IonicRouteStrategy } ], bootstrap: [AppComponent] }) export class AppModule {} 更改为

enter image description here

类似const collection = db.collection('yourcollection'); const changeStream = collection.watch(); changeStream.on('change', next => { }); 的东西吗?是否可以自定义此方法?

这是我生成上述转帐Have also placed the same code to replicate the above transfer component in codesandbox的方式:

14 items

1 个答案:

答案 0 :(得分:1)

这是来自蚂蚁设计的代码,因此这是您首先应该检查文档here的地方。如果向下滚动一点,您会看到它有一个名为locale的东西,可以让您完全按照自己的要求进行操作。

这是我从您的代码中分叉并添加的locale,请看here