UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

28 lines (27 loc) 547 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _default = element => { if (!element) { return false; } if (element.offsetParent) { return true; } if (element.getBBox) { const box = element.getBBox(); if (box.width || box.height) { return true; } } if (element.getBoundingClientRect) { const box = element.getBoundingClientRect(); if (box.width || box.height) { return true; } } return false; }; exports.default = _default;