UNPKG
v-md-editor
Version:
latest (1.0.6)
1.0.6
A markdown editor built on Vue
v-md-editor
/
src
/
components
/
Expand.js
13 lines
(11 loc)
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ h }
from
'vue'
;
export
default
{
name
:
'Expand'
,
props
: {
render
:
Function
,
hide
:
Function
, },
render
() {
return
this
.
render
(h, {
hide
:
this
.
hide
}); } };