UNPKG

element-nice-ui

Version:

A Component Library for Vue.js.

884 lines (847 loc) 28.3 kB
module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = "/dist/"; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 175); /******/ }) /************************************************************************/ /******/ ({ /***/ 175: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _table_src_table_column__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(77); /* istanbul ignore next */ _table_src_table_column__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].install = function (Vue) { Vue.component(_table_src_table_column__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].name, _table_src_table_column__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"]); }; /* harmony default export */ __webpack_exports__["default"] = (_table_src_table_column__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"]); /***/ }), /***/ 20: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return getCell; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return orderBy; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return getColumnById; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return getColumnByKey; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return getColumnByCell; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getRowIdentity; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return getKeysMap; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return mergeOptions; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return parseWidth; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return parseMinWidth; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return parseHeight; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return compose; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return toggleRowStatus; }); /* harmony import */ var element_nice_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5); /* harmony import */ var element_nice_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_nice_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__); const getCell = function getCell(event) { let cell = event.target; while (cell && cell.tagName.toUpperCase() !== 'HTML') { if (cell.tagName.toUpperCase() === 'TD') { return cell; } cell = cell.parentNode; } return null; }; const isObject = function isObject(obj) { return obj !== null && typeof obj === 'object'; }; const orderBy = function orderBy(array, sortKey, reverse, sortMethod, sortBy) { if (!sortKey && !sortMethod && (!sortBy || Array.isArray(sortBy) && !sortBy.length)) { return array; } if (typeof reverse === 'string') { reverse = reverse === 'descending' ? -1 : 1; } else { reverse = reverse && reverse < 0 ? -1 : 1; } const getKey = sortMethod ? null : function (value, index) { if (sortBy) { if (!Array.isArray(sortBy)) { sortBy = [sortBy]; } return sortBy.map(function (by) { if (typeof by === 'string') { return Object(element_nice_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__["getValueByPath"])(value, by); } else { return by(value, index, array); } }); } if (sortKey !== '$key') { if (isObject(value) && '$value' in value) value = value.$value; } return [isObject(value) ? Object(element_nice_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__["getValueByPath"])(value, sortKey) : value]; }; const compare = function compare(a, b) { if (sortMethod) { return sortMethod(a.value, b.value); } for (let i = 0, len = a.key.length; i < len; i++) { if (a.key[i] < b.key[i]) { return -1; } if (a.key[i] > b.key[i]) { return 1; } } return 0; }; return array.map(function (value, index) { return { value: value, index: index, key: getKey ? getKey(value, index) : null }; }).sort(function (a, b) { let order = compare(a, b); if (!order) { // make stable https://en.wikipedia.org/wiki/Sorting_algorithm#Stability order = a.index - b.index; } return order * reverse; }).map(item => item.value); }; const getColumnById = function getColumnById(table, columnId) { let column = null; table.columns.forEach(function (item) { if (item.id === columnId) { column = item; } }); return column; }; const getColumnByKey = function getColumnByKey(table, columnKey) { let column = null; for (let i = 0; i < table.columns.length; i++) { const item = table.columns[i]; if (item.columnKey === columnKey) { column = item; break; } } return column; }; const getColumnByCell = function getColumnByCell(table, cell) { const matches = (cell.className || '').match(/el-table_[^\s]+/gm); if (matches) { return getColumnById(table, matches[0]); } return null; }; const getRowIdentity = (row, rowKey) => { if (!row) throw new Error('row is required when get row identity'); if (typeof rowKey === 'string') { if (rowKey.indexOf('.') < 0) { return row[rowKey]; } let key = rowKey.split('.'); let current = row; for (let i = 0; i < key.length; i++) { current = current[key[i]]; } return current; } else if (typeof rowKey === 'function') { return rowKey.call(null, row); } }; const getKeysMap = function getKeysMap(array, rowKey) { const arrayMap = {}; (array || []).forEach((row, index) => { arrayMap[getRowIdentity(row, rowKey)] = { row, index }; }); return arrayMap; }; function hasOwn(obj, key) { return Object.prototype.hasOwnProperty.call(obj, key); } function mergeOptions(defaults, config) { const options = {}; let key; for (key in defaults) { options[key] = defaults[key]; } for (key in config) { if (hasOwn(config, key)) { const value = config[key]; if (typeof value !== 'undefined') { options[key] = value; } } } return options; } function parseWidth(width) { if (width !== undefined) { width = parseInt(width, 10); if (isNaN(width)) { width = null; } } return width; } function parseMinWidth(minWidth) { if (typeof minWidth !== 'undefined') { minWidth = parseWidth(minWidth); if (isNaN(minWidth)) { minWidth = 80; } } return minWidth; } function parseHeight(height) { if (typeof height === 'number') { return height; } if (typeof height === 'string') { if (/^\d+(?:px)?$/.test(height)) { return parseInt(height, 10); } else { return height; } } return null; } // https://github.com/reduxjs/redux/blob/master/src/compose.js function compose() { for (var _len = arguments.length, funcs = new Array(_len), _key = 0; _key < _len; _key++) { funcs[_key] = arguments[_key]; } if (funcs.length === 0) { return arg => arg; } if (funcs.length === 1) { return funcs[0]; } return funcs.reduce((a, b) => { return function () { return a(b(...arguments), arguments.length <= 1 ? undefined : arguments[1]); }; }); } function toggleRowStatus(statusArr, row, newVal) { let changed = false; const index = statusArr.indexOf(row); const included = index !== -1; const addRow = () => { statusArr.push(row); changed = true; }; const removeRow = () => { statusArr.splice(index, 1); changed = true; }; if (typeof newVal === 'boolean') { if (newVal && !included) { addRow(); } else if (!newVal && included) { removeRow(); } } else { if (included) { removeRow(); } else { addRow(); } } return changed; } /***/ }), /***/ 26: /***/ (function(module, exports) { module.exports = require("element-nice-ui/lib/checkbox"); /***/ }), /***/ 30: /***/ (function(module, exports) { module.exports = require("@vue/babel-helper-vue-jsx-merge-props"); /***/ }), /***/ 5: /***/ (function(module, exports) { module.exports = require("element-nice-ui/lib/utils/util"); /***/ }), /***/ 77: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // EXTERNAL MODULE: external "@vue/babel-helper-vue-jsx-merge-props" var babel_helper_vue_jsx_merge_props_ = __webpack_require__(30); var babel_helper_vue_jsx_merge_props_default = /*#__PURE__*/__webpack_require__.n(babel_helper_vue_jsx_merge_props_); // EXTERNAL MODULE: external "element-nice-ui/lib/utils/util" var util_ = __webpack_require__(5); // CONCATENATED MODULE: ./packages/table/src/config.js const cellStarts = { default: { order: '' }, selection: { width: 48, minWidth: 48, realWidth: 48, order: '', className: 'el-table-column--selection' }, expand: { width: 48, minWidth: 48, realWidth: 48, order: '' }, index: { width: 48, minWidth: 48, realWidth: 48, order: '' } }; // 这些选项不应该被覆盖 const cellForced = { selection: { renderHeader: function renderHeader(h, _ref) { let { store } = _ref; let { data, selection } = store.states; const disabled = data && data.length === 0; let vueData = { props: { disabled, indeterminate: selection.length > 0 && !this.isAllSelected, value: this.isAllSelected }, nativeOn: {} }; if (!disabled) { vueData.nativeOn.click = this.toggleAllSelection; } return h("el-checkbox", babel_helper_vue_jsx_merge_props_default()([{}, vueData])); }, renderCell: function renderCell(h, _ref2) { let { row, column, store, $index } = _ref2; return h("el-checkbox", { "nativeOn": { "click": event => event.stopPropagation() }, "attrs": { "value": store.isSelected(row), "disabled": column.selectable ? !column.selectable.call(null, row, $index) : false }, "on": { "input": () => { store.commit('rowSelectedChanged', row); } } }); }, sortable: false, resizable: false }, index: { renderHeader: function renderHeader(h, _ref3) { let { column } = _ref3; return column.label || '#'; }, renderCell: function renderCell(h, _ref4) { let { $index, column } = _ref4; let i = $index + 1; const index = column.index; if (typeof index === 'number') { i = $index + index; } else if (typeof index === 'function') { i = index($index); } return h("div", [i]); }, sortable: false }, expand: { renderHeader: function renderHeader(h, _ref5) { let { column } = _ref5; return column.label || ''; }, renderCell: function renderCell(h, _ref6) { let { row, store } = _ref6; const classes = ['el-table__expand-icon']; if (store.states.expandRows.indexOf(row) > -1) { classes.push('el-table__expand-icon--expanded'); } const callback = function callback(e) { e.stopPropagation(); store.toggleRowExpansion(row); }; return h("div", { "class": classes, "on": { "click": callback } }, [h("i", { "class": 'el-icon el-icon-arrow-right' })]); }, sortable: false, resizable: false, className: 'el-table__expand-column' } }; function defaultRenderCell(h, _ref7, defaultVal) { let { row, column, $index } = _ref7; const property = column.property; const value = property && Object(util_["getPropByPath"])(row, property).v; if (column && column.formatter) { return column.formatter(row, column, value, $index) || defaultVal; } return value || defaultVal; } function treeCellPrefix(h, _ref8) { let { row, treeNode, store } = _ref8; if (!treeNode) return null; const ele = []; const callback = function callback(e) { e.stopPropagation(); store.loadOrToggle(row); }; if (treeNode.indent) { ele.push(h("span", { "class": 'el-table__indent', "style": { 'padding-left': treeNode.indent + 'px' } })); } if (typeof treeNode.expanded === 'boolean' && !treeNode.noLazyChildren) { const expandClasses = ['el-table__expand-icon', treeNode.expanded ? 'el-table__expand-icon--expanded' : '']; let iconClasses = ['el-icon-arrow-right']; if (treeNode.loading) { iconClasses = ['el-icon-loading']; } ele.push(h("div", { "class": expandClasses, "on": { "click": callback } }, [h("i", { "class": iconClasses })])); } else { ele.push(h("span", { "class": 'el-table__placeholder' })); } return ele; } // EXTERNAL MODULE: ./packages/table/src/util.js var util = __webpack_require__(20); // EXTERNAL MODULE: external "element-nice-ui/lib/checkbox" var checkbox_ = __webpack_require__(26); var checkbox_default = /*#__PURE__*/__webpack_require__.n(checkbox_); // CONCATENATED MODULE: ./packages/table/src/table-column.js function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } let columnIdSeed = 1; /* harmony default export */ var table_column = __webpack_exports__["a"] = ({ name: 'ElTableColumn', props: { type: { type: String, default: 'default' }, children: { type: Array }, label: String, className: String, labelClassName: String, property: String, prop: String, width: {}, minWidth: {}, renderHeader: Function, sortable: { type: [Boolean, String], default: false }, sortMethod: Function, sortBy: [String, Function, Array], resizable: { type: Boolean, default: true }, columnKey: String, align: String, headerAlign: String, showTooltipWhenOverflow: Boolean, showOverflowTooltip: Boolean, fixed: [Boolean, String], formatter: Function, selectable: Function, reserveSelection: Boolean, filterMethod: Function, filteredValue: Array, filters: Array, filterPlacement: String, filterMultiple: { type: Boolean, default: true }, index: [Number, Function], sortOrders: { type: Array, default() { return ['ascending', 'descending', null]; }, validator(val) { return val.every(order => ['ascending', 'descending', null].indexOf(order) > -1); } } }, data() { return { isSubColumn: false, columns: [] }; }, computed: { owner() { let parent = this.$parent; while (parent && !parent.tableId) { parent = parent.$parent; } return parent; }, columnOrTableParent() { let parent = this.$parent; while (parent && !parent.tableId && !parent.columnId) { parent = parent.$parent; } return parent; }, realWidth() { return Object(util["l" /* parseWidth */])(this.width); }, realMinWidth() { return Object(util["k" /* parseMinWidth */])(this.minWidth); }, realAlign() { return this.align ? 'is-' + this.align : null; }, realHeaderAlign() { return this.headerAlign ? 'is-' + this.headerAlign : this.realAlign; } }, methods: { getPropsData() { for (var _len = arguments.length, props = new Array(_len), _key = 0; _key < _len; _key++) { props[_key] = arguments[_key]; } return props.reduce((prev, cur) => { if (Array.isArray(cur)) { cur.forEach(key => { prev[key] = this[key]; }); } return prev; }, {}); }, getColumnElIndex(children, child) { return [].indexOf.call(children, child); }, setColumnWidth(column) { if (this.realWidth) { column.width = this.realWidth; } if (this.realMinWidth) { column.minWidth = this.realMinWidth; } if (!column.minWidth) { column.minWidth = 80; } column.realWidth = column.width === undefined ? column.minWidth : column.width; return column; }, setColumnForcedProps(column) { // 对于特定类型的 column,某些属性不允许设置 const type = column.type; const source = cellForced[type] || {}; Object.keys(source).forEach(prop => { let value = source[prop]; if (value !== undefined) { column[prop] = prop === 'className' ? "".concat(column[prop], " ").concat(value) : value; } }); return column; }, setColumnRenders(column, placeholder) { const h = this.$createElement; // renderHeader 属性不推荐使用。 if (this.renderHeader) { console.warn('[Element Warn][TableColumn]Comparing to render-header, scoped-slot header is easier to use. We recommend users to use scoped-slot header.'); } else if (column.type !== 'selection') { column.renderHeader = (h, scope) => { const renderHeader = this.$scopedSlots.header; return renderHeader ? renderHeader(scope) : column.label; }; } let originRenderCell = column.renderCell; // TODO: 这里的实现调整 if (column.type === 'expand') { // 对于展开行,renderCell 不允许配置的。在上一步中已经设置过,这里需要简单封装一下。 column.renderCell = (h, data) => h("div", { "class": 'cell' }, [originRenderCell(h, data)]); this.owner.renderExpanded = (h, data) => { return this.$scopedSlots.default ? this.$scopedSlots.default(data) : this.$slots.default; }; } else { originRenderCell = originRenderCell || defaultRenderCell; // 对 renderCell 进行包装 column.renderCell = (h, data) => { let children = null; if (this.$scopedSlots.default) { children = this.$scopedSlots.default(data); } else { children = originRenderCell(h, data, placeholder); } const prefix = treeCellPrefix(h, data); const props = { class: 'cell', style: {} }; if (column.showOverflowTooltip) { props.class += ' el-tooltip'; props.style = { width: (data.column.realWidth || data.column.width) - 1 + 'px' }; } return h("div", babel_helper_vue_jsx_merge_props_default()([{}, props]), [prefix, children]); }; } return column; }, registerNormalWatchers() { const props = ['label', 'property', 'filters', 'filterMultiple', 'sortable', 'index', 'formatter', 'className', 'labelClassName', 'showOverflowTooltip']; // 一些属性具有别名 const aliases = { prop: 'property', realAlign: 'align', realHeaderAlign: 'headerAlign', realWidth: 'width' }; const allAliases = props.reduce((prev, cur) => { prev[cur] = cur; return prev; }, aliases); Object.keys(allAliases).forEach(key => { const columnKey = aliases[key]; this.$watch(key, newVal => { this.columnConfig[columnKey] = newVal; }); }); }, registerComplexWatchers() { const props = ['fixed']; const aliases = { realWidth: 'width', realMinWidth: 'minWidth' }; const allAliases = props.reduce((prev, cur) => { prev[cur] = cur; return prev; }, aliases); Object.keys(allAliases).forEach(key => { const columnKey = aliases[key]; this.$watch(key, newVal => { this.columnConfig[columnKey] = newVal; const updateColumns = columnKey === 'fixed'; this.owner.store.scheduleLayout(updateColumns); }); }); } }, components: { ElCheckbox: checkbox_default.a }, beforeCreate() { this.row = {}; this.column = {}; this.$index = 0; this.columnId = ''; }, created() { const parent = this.columnOrTableParent; this.isSubColumn = this.owner !== parent; this.columnId = (parent.tableId || parent.columnId) + '_column_' + columnIdSeed++; const type = this.type || 'default'; const sortable = this.sortable === '' ? true : this.sortable; const defaults = _objectSpread(_objectSpread({}, cellStarts[type]), {}, { id: this.columnId, type: type, property: this.prop || this.property, align: this.realAlign, headerAlign: this.realHeaderAlign, showOverflowTooltip: this.showOverflowTooltip || this.showTooltipWhenOverflow, // filter 相关属性 filterable: this.filters || this.filterMethod, filteredValue: [], filterPlacement: '', isColumnGroup: false, filterOpened: false, // sort 相关属性 sortable: sortable, // index 列 index: this.index }); const basicProps = ['columnKey', 'label', 'className', 'labelClassName', 'type', 'renderHeader', 'formatter', 'fixed', 'resizable']; const sortProps = ['sortMethod', 'sortBy', 'sortOrders']; const selectProps = ['selectable', 'reserveSelection']; const filterProps = ['filterMethod', 'filters', 'filterMultiple', 'filterOpened', 'filteredValue', 'filterPlacement']; let column = this.getPropsData(basicProps, sortProps, selectProps, filterProps); column = Object(util["h" /* mergeOptions */])(defaults, column); // 注意 compose 中函数执行的顺序是从右到左 const chains = Object(util["a" /* compose */])(this.setColumnRenders, this.setColumnWidth, this.setColumnForcedProps); column = chains(column, this.owner.store.states.placeholder); this.columnConfig = column; // 注册 watcher this.registerNormalWatchers(); this.registerComplexWatchers(); }, mounted() { const owner = this.owner; const parent = this.columnOrTableParent; const children = this.isSubColumn ? parent.$el.children : parent.$refs.hiddenColumns.children; const columnIndex = this.getColumnElIndex(children, this.$el); owner.store.commit('insertColumn', this.columnConfig, columnIndex, this.isSubColumn ? parent.columnConfig : null); }, destroyed() { if (!this.$parent) return; const parent = this.$parent; this.owner.store.commit('removeColumn', this.columnConfig, this.isSubColumn ? parent.columnConfig : null); }, render(h) { // slots 也要渲染,需要计算合并表头 let children; if (this.children && this.children.length) { children = this.children.map(child => { return h("el-table-column", { "props": _objectSpread({}, child) }); }); } else { children = this.$slots.default; } return h("div", [children]); } }); /***/ }) /******/ });