1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- export default {
- props: {
-
- safeAreaInsetTop: {
- type: Boolean,
- default: uni.$u.props.navbar.safeAreaInsetTop
- },
-
- placeholder: {
- type: Boolean,
- default: uni.$u.props.navbar.placeholder
- },
-
- fixed: {
- type: Boolean,
- default: uni.$u.props.navbar.fixed
- },
-
- border: {
- type: Boolean,
- default: uni.$u.props.navbar.border
- },
-
- leftIcon: {
- type: String,
- default: uni.$u.props.navbar.leftIcon
- },
-
- leftText: {
- type: String,
- default: uni.$u.props.navbar.leftText
- },
-
- rightText: {
- type: String,
- default: uni.$u.props.navbar.rightText
- },
-
- rightIcon: {
- type: String,
- default: uni.$u.props.navbar.rightIcon
- },
-
- title: {
- type: [String, Number],
- default: uni.$u.props.navbar.title
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.navbar.bgColor
- },
- bgImage: {
- type: String,
- default: uni.$u.props.navbar.bgImage
- },
- bgStatusImage: {
- type: String,
- default: uni.$u.props.navbar.bgStatusImage
- },
-
- titleWidth: {
- type: [String, Number],
- default: uni.$u.props.navbar.titleWidth
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.navbar.height
- },
-
- leftIconSize: {
- type: [String, Number],
- default: uni.$u.props.navbar.leftIconSize
- },
-
- leftIconColor: {
- type: String,
- default: uni.$u.props.navbar.leftIconColor
- },
-
- autoBack: {
- type: Boolean,
- default: uni.$u.props.navbar.autoBack
- },
-
- titleStyle: {
- type: [String, Object],
- default: uni.$u.props.navbar.titleStyle
- }
- }
- }
|