1
13693261870
2023-06-27 028048b8c540335923d1ac13d74daa8b92fcb7d6
1
2
3
4
5
import { hasOwn } from 'element-ui/src/utils/util';
 
export function isVNode(node) {
  return node !== null && typeof node === 'object' && hasOwn(node, 'componentOptions');
};