mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
*
This commit is contained in:
20
static/element-ui/lib/utils/vdom.js
Normal file
20
static/element-ui/lib/utils/vdom.js
Normal file
@@ -0,0 +1,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 (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];
|
||||
};
|
||||
Reference in New Issue
Block a user