12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
|
|
export default typeof definePageConfig === 'function'
|
||
|
|
? definePageConfig({
|
||
|
|
navigationBarTitleText: '我的',
|
||
|
|
navigationBarBackgroundColor: '#111827',
|
||
|
|
navigationBarTextStyle: 'white'
|
||
|
|
})
|
||
|
|
: {
|
||
|
|
navigationBarTitleText: '我的',
|
||
|
|
navigationBarBackgroundColor: '#111827',
|
||
|
|
navigationBarTextStyle: 'white'
|
||
|
|
}
|