mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-05-07 15:17:48 +08:00
20 lines
739 B
JavaScript
20 lines
739 B
JavaScript
![]() |
'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];
|
||
|
};
|