| 12345678910111213141516171819202122232425262728293031323334 |
- // @ts-nocheck
- // export const outline = {
- // show: false,
- // borderWidth: '12rpx',
- // borderDistance: '12rpx',
- // borderColor: '#007aff',
- // shadowBlur: '20rpx',
- // shadowColor: 'rgba(0, 0, 0, 0.25)'
- // }
-
- export default {
- percent: {
- type: Number,
- default: 10
- },
- size: {
- type: String,
- // default: '250rpx'
- },
- outline: {
- type: Boolean,
- // default: outline
- },
- // background: {
- // type: String,
- // // default: '#E3F7FF'
- // },
- radius: String,
- innerColor: String,
- waveColor: {
- type: String,
- // default: '#007aff'
- }
- }
|