UNPKG
yk-smart-ui
Version:
latest (2.1.31)
2.1.31
2.1.30
2.1.29
2.1.28
2.1.27
2.1.26
2.1.25
2.1.24
2.1.23
2.1.22
2.1.21
2.1.19
2.1.18
2.1.17
2.1.16
2.1.15
2.1.14
2.1.3
2.1.2
2.1.1
2.1.0
2.0.15-beta
2.0.14-beta
2.0.13-beta
2.0.12-beta
2.0.11-bate
2.0.10-bate
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
1.1.20
1.1.19
1.1.18
1.1.17
1.1.16
1.1.15
1.1.14
1.1.13
1.1.12
1.1.11
1.1.1
1.1.0
1.0.52
1.0.51
1.0.50
1.0.49
1.0.48
1.0.47
1.0.46
1.0.45
1.0.44
1.0.43
1.0.42
1.0.41
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A Component Library for Vue.js.
yk-smart-ui
/
src
/
utils
/
vdom.js
6 lines
(4 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ hasOwn }
from
'element-ui/src/utils/util'
;
export
function
isVNode
(
node
) {
return
node !==
null
&&
typeof
node ===
'object'
&&
hasOwn
(node,
'componentOptions'
); };