123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- 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
- },
-
- 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
- }
- }
- }
|