123456789101112131415161718192021222324252627282930 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- activeColor: {
- type: String,
- default: () => defProps.lineProgress.activeColor
- },
- inactiveColor: {
- type: String,
- default: () => defProps.lineProgress.color
- },
-
- percentage: {
- type: [String, Number],
- default: () => defProps.lineProgress.inactiveColor
- },
-
- showText: {
- type: Boolean,
- default: () => defProps.lineProgress.showText
- },
-
- height: {
- type: [String, Number],
- default: () => defProps.lineProgress.height
- }
- }
- })
|