12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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
- }
- }
- }
|