Blame view

node_modules/element-ui/lib/utils/vdom.js 756 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  'use strict';
  
  exports.__esModule = true;
  
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
  
  exports.isVNode = isVNode;
  exports.getFirstComponentChild = getFirstComponentChild;
  
  var _util = require('element-ui/lib/utils/util');
  
  function isVNode(node) {
    return node !== null && (typeof node === 'undefined' ? 'undefined' : _typeof(node)) === 'object' && (0, _util.hasOwn)(node, 'componentOptions');
  };
  
  function getFirstComponentChild(children) {
    return children && children.filter(function (c) {
      return c && c.tag;
    })[0];
  };