1234567891011121314151617181920 |
- '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 (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];
- };
|