1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default {
- props: {
-
- text: {
- type: [String, Number],
- default: uni.$u.props.tooltip.text
- },
-
- copyText: {
- type: [String, Number],
- default: uni.$u.props.tooltip.copyText
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.tooltip.size
- },
-
- color: {
- type: String,
- default: uni.$u.props.tooltip.color
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.tooltip.bgColor
- },
-
- direction: {
- type: String,
- default: uni.$u.props.tooltip.direction
- },
-
- zIndex: {
- type: [String, Number],
- default: uni.$u.props.tooltip.zIndex
- },
-
- showCopy: {
- type: Boolean,
- default: uni.$u.props.tooltip.showCopy
- },
-
- buttons: {
- type: Array,
- default: uni.$u.props.tooltip.buttons
- },
-
- overlay: {
- type: Boolean,
- default: uni.$u.props.tooltip.overlay
- },
-
- showToast: {
- type: Boolean,
- default: uni.$u.props.tooltip.showToast
- }
- }
- }
|