Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

14 wiersze
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. })