1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- value: {
- type: [String, Number, null],
- default: () => defProps.tabbar.value
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: () => defProps.tabbar.safeAreaInsetBottom
- },
-
- border: {
- type: Boolean,
- default: () => defProps.tabbar.border
- },
-
- zIndex: {
- type: [String, Number],
- default: () => defProps.tabbar.zIndex
- },
-
- activeColor: {
- type: String,
- default: () => defProps.tabbar.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: () => defProps.tabbar.inactiveColor
- },
-
- fixed: {
- type: Boolean,
- default: () => defProps.tabbar.fixed
- },
-
- placeholder: {
- type: Boolean,
- default: () => defProps.tabbar.placeholder
- }
- }
- })
|