123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { defineMixin } from '../../libs/vue'
- export const props = defineMixin({
- props: {
-
- safeAreaInsetTop: {
- type: Boolean,
- default: () => true
- },
-
- fixed: {
- type: Boolean,
- default: () => true
- },
-
- leftIcon: {
- type: String,
- default: 'arrow-leftward'
- },
-
- bgColor: {
- type: String,
- default: () => 'rgba(0,0,0,.15)'
- },
-
- height: {
- type: [String, Number],
- default: () => '32px'
- },
-
- iconSize: {
- type: [String, Number],
- default: '20px'
- },
-
- iconColor: {
- type: String,
- default: '#fff'
- },
-
- autoBack: {
- type: Boolean,
- default: () => true
- },
-
- homeUrl: {
- type: [String],
- default: ''
- }
- }
- })
|