UNPKG
@dfsj/echarts
Version:
latest (3.7.0-alpha.6)
3.7.0
3.7.0-alpha.6
3.7.0-alpha.5
3.7.0-alpha.4
3.7.0-alpha.3
3.7.0-alpha.2
3.7.0-alpha.1
3.6.0
3.5.1
3.5.0
3.4.0
3.3.0
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
专业的水文曲线组件或构造函数以及通用的echart二次封装图表
@dfsj/echarts
/
dist
/
view
/
useToolTip.d.ts
12 lines
(11 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Ref
}
from
'vue'
;
export
declare
function
useToolTip
(
target
?:
Ref
<
HTMLElement
>
): {
close
:
() =>
void
;
open
:
(
oDom
?:
HTMLElement
) =>
void
;
offset
: {
x
:
number
;
y
:
number
; };
content
:
Ref
<
any
,
any
>;
hidden
:
Ref
<
boolean
,
boolean
>; };