zhangwei
2024-09-03 376ac09a54e8c95190d06bf39f295c890829c103
1
2
3
4
5
6
7
8
9
10
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
export const props = defineMixin({
    props: {
        percentage: {
            type: [String, Number],
            default: () => defProps.circleProgress.percentage
        }
    }
})