UNPKG
lixi-ui
Version:
latest (0.1.0)
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
A Component Library for Vue.js.
lixi-ui.cn
lingniker/lixi
lixi-ui
/
src
/
utils
/
vdom.js
6 lines
(4 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ hasOwn }
from
'lixi-ui/src/utils/util'
;
export
function
isVNode
(
node
) {
return
node !==
null
&&
typeof
node ===
'object'
&&
hasOwn
(node,
'componentOptions'
); };