mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 03:01:12 +00:00
41 lines
889 B
JavaScript
Vendored
41 lines
889 B
JavaScript
Vendored
export default {
|
|
props: {
|
|
userid: {
|
|
type: [String, Number],
|
|
default: ''
|
|
},
|
|
size: {
|
|
type: [String, Number],
|
|
default: 'default'
|
|
},
|
|
showIcon: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
showName: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
nameText: {
|
|
type: String,
|
|
default: null // showName = true 时有效,留空就显示会员昵称
|
|
},
|
|
borderWitdh: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
borderColor: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
clickOpenDialog: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
userResult: {
|
|
type: [Function, Object],
|
|
default: null
|
|
}
|
|
}
|
|
}
|