@tencentcloud/call-uikit-vue
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
37 lines (36 loc) • 596 B
text/typescript
const Trigger = ['click','hover'] as const;
const Placement = ['top', 'bottom', 'left', 'right'] as const;
export const PopoverProps = {
trigger: {
type: String,
values: Trigger,
default: 'click',
},
placement: {
type: String,
values: Placement,
default: 'top',
},
color: {
type: String,
},
isShowArrow: {
type: Boolean,
default: true,
},
arrowSize: {
type: Number,
default: 5,
},
arrowDistance: {
type: Number,
default: 5,
},
show: {
type: Boolean,
},
autoClose: {
type: Number,
default: 300,
},
};