UNPKG
@hscmap/vue-menu
Version:
latest (2.10.1)
2.10.1
2.10.0
2.9.0
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
2.7.5
2.7.4
2.7.3
2.7.2
2.7.1
2.7.0
2.6.0
2.5.2
2.5.1
2.5.0
2.4.2
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.1
1.5.0
1.4.4
1.4.3
1.4.2
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.15
1.0.14
1.0.13
1.0.12
1.0.10
1.0.9
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
0.0.1
Vue component for menu & contextmenu
github.com/michitaro/vue-menu
michitaro/vue-menu
@hscmap/vue-menu
/
lib
/
types
/
keybinder.d.ts
12 lines
(11 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Vue
}
from
'vue-property-decorator'
;
import
{
CreateElement
}
from
"vue"
;
export
declare
class
Keybinder
extends
Vue
{
source
:
string
;
enabled
:
boolean
;
off
:
() =>
void
;
created
():
void
;
updated
():
void
;
beforeDestroy
():
void
;
render
(
h
:
CreateElement
):
void
; }