UNPKG

176 BJavaScriptView Raw
1import { hasOwn } from 'element-ui/src/utils/util';
2
3export function isVNode(node) {
4 return node !== null && typeof node === 'object' && hasOwn(node, 'componentOptions');
5};