You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 regels
427 B

  1. import { defineMixin } from '../../libs/vue'
  2. import CircleProgressDefaultProps from './circleProgress'
  3. import { registerComponentProps } from '../../libs/config/props.js'
  4. const defProps = registerComponentProps(CircleProgressDefaultProps)
  5. export const props = defineMixin({
  6. props: {
  7. percentage: {
  8. type: [String, Number],
  9. default: () => defProps.circleProgress.percentage
  10. }
  11. }
  12. })