feat:转账插件

This commit is contained in:
2026-07-23 14:31:06 +08:00
parent 4916546322
commit d5a6a16ea5
560 changed files with 71777 additions and 44216 deletions
@@ -1,5 +1,8 @@
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
import TabsDefaultProps from './tabs'
import { registerComponentProps } from '../../libs/config/props.js'
const defProps = registerComponentProps(TabsDefaultProps)
export const props = defineMixin({
props: {
// 滑块的移动过渡时间,单位ms
@@ -63,9 +66,14 @@ export const props = defineMixin({
default: () => defProps.tabs.keyName
},
// 左侧图标样式
iconStyle: {
type: [String, Object],
default: () => defProps.tabs.iconStyle
}
}
})
iconStyle: {
type: [String, Object],
default: () => defProps.tabs.iconStyle
},
// 形态模式,可选:capsule/card/pill-arrow/tag
shapeMode: {
type: String,
default: () => defProps.tabs.shapeMode
}
}
})