@lossendae/vue-table
Version:
Simple table component for Vue.js 2.x with pagination and sortable columns
2 lines • 18.8 kB
JavaScript
(function t(e,n){"object"===typeof exports&&"object"===typeof module?module.exports=n():"function"===typeof define&&define.amd?define([],n):"object"===typeof exports?exports["VueTable"]=n():e["VueTable"]=n()})("undefined"!==typeof self?self:this,function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.r=function(t){Object.defineProperty(t,"__esModule",{value:!0})},n.n=function(t){var e=t&&t.__esModule?function e(){return t["default"]}:function e(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="+xUi")}({"+rLv":function(t,e,n){var r=n("dyZX").document;t.exports=r&&r.documentElement},"+xUi":function(t,e,n){"use strict";n.r(e);var r=n("HrLf"),i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"table table-hover"},[n("thead",[n("tr",t._l(t.columns,function(e,r){return n("th",{key:e+"_"+r},[t._t("header__"+e.name,[e.sortable&&t.rows.length>0?n("a",{staticClass:"d-flex align-items-center sortable-link",attrs:{href:""},on:{click:function(n){n.preventDefault(),t.sort(e)}}},[t._v("\n "+t._s(e.title||e.name)+"\n "),t.isSorted(e)?n("i",{staticClass:"fa ml-2",class:{"fa-caret-up":"asc"===t.sortDirection,"fa-caret-down":"desc"===t.sortDirection}}):t._e()]):[t._v(t._s(e.title||e.name))]],{column:e})],2)}))]),n("tbody",[t._l(t.rows,function(e){return n("tr",t._l(t.column_names,function(r,i){return n("td",{key:e[r]+"_"+i},[t.fieldExistsInRow(e,r)?[t._t(r,[t._v(t._s(e[r]))],{row:e})]:[t._t(r,[t._v("[slot: "+t._s(r)+"]")],{row:e})]],2)}))}),0===t.rows.length?n("tr",[t._t("no_result",[n("td",{staticClass:"text-center pt-4 p-3",attrs:{colspan:t.columns.length}},[t._t("empty",[t._v("No results found")])],2)],{columns:t.columns})],2):t._e()],2)])},o=[],s=n("f3/d"),a=n("Z2Ku"),u=n("L9s1"),c={props:{columns:{type:Array,required:!0},rows:{type:Array,required:!0},sortBy:{type:String},sortDirection:{type:String,default:function t(){return"asc"},validator:function t(e){return["asc","desc"].includes(e)}}},data:function t(){return{column_names:[]}},methods:{fieldExistsInRow:function t(e,n){return e.hasOwnProperty(n)},getSortKey:function t(e){return"string"===typeof e.sortable?e.sortable:e.name},isSorted:function t(e){return"undefined"===typeof this.sortBy&&console.warn('"sortBy" prop was not defined, but column "%s" is marked as sortable',e.name),this.getSortKey(e)===this.sortBy},sort:function t(e){this.$emit("column:sort",{sortBy:this.getSortKey(e),sortDirection:"asc"===this.sortDirection?"desc":"asc"})}},mounted:function t(){this.column_names=this.columns.map(function(t){return t.name})}},f={name:"vue-table",mixins:[c]},l=f;function p(t,e,n,r,i,o,s,a){var u="function"===typeof t?t.options:t,c;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),s?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},u._ssrRegister=c):i&&(c=a?function(){i.call(this,this.$root.$options.shadowRoot)}:i),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function t(e,n){return c.call(n),f(e,n)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:t,options:u}}var h=p(l,i,o,!1,null,null,null),d=h.exports,g=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"d-flex bg-light p-2 align-items-center"},[n("div",[t._t("info",[t.totalItems>0?[t._v("\n From "+t._s(t.from)+" to "+t._s(t.to)+" on "+t._s(t.totalItems)+" result(s)\n ")]:[t._v("\n No results\n ")]],{from:t.from,to:t.to,totalItems:t.totalItems})],2),n("div",{staticClass:"ml-auto d-flex"},[t.showRefreshButton?[n("button",{staticClass:"btn btn-sm btn-outline-secondary mr-2",on:{click:function(e){e.preventDefault(),t.selectPage(t.currentPage)}}},[n("i",{staticClass:"fa fa-refresh pl-1 pr-1"})])]:t._e(),t.total_pages>1?n("ul",{staticClass:"pagination"},[t.useFirstLastLinks?n("li",{staticClass:"page-item",class:{disabled:t.is_first_page}},[n("a",{staticClass:"page-link",attrs:{href:""},domProps:{innerHTML:t._s(t.firstText)},on:{click:function(e){e.preventDefault(),t.selectPage(1)}}})]):t._e(),t.useNextPrevLinks?n("li",{staticClass:"page-item",class:{disabled:t.is_first_page}},[n("a",{staticClass:"page-link",attrs:{href:""},domProps:{innerHTML:t._s(t.previousText)},on:{click:function(e){e.preventDefault(),t.selectPage(t.currentPage-1)}}})]):t._e(),t._l(t.pages,function(e,r){return n("li",{key:r,staticClass:"page-item",class:{active:e.active}},[n("a",{staticClass:"page-link",attrs:{disabled:!e.active,href:""},on:{click:function(n){n.preventDefault(),t.selectPage(e.number)}}},[t._v(t._s(e.label))])])}),t.useNextPrevLinks?n("li",{staticClass:"page-item",class:{disabled:t.is_last_page}},[n("a",{staticClass:"page-link",attrs:{href:""},domProps:{innerHTML:t._s(t.nextText)},on:{click:function(e){e.preventDefault(),t.selectPage(t.currentPage+1)}}})]):t._e(),t.useFirstLastLinks?n("li",{staticClass:"page-item",class:{disabled:t.is_last_page}},[n("a",{staticClass:"page-link",attrs:{href:""},domProps:{innerHTML:t._s(t.lastText)},on:{click:function(e){e.preventDefault(),t.selectPage(t.total_pages)}}})]):t._e()],2):t._e()],2)])},m=[],v=n("xfY5"),_={props:{showRefreshButton:{type:Boolean,default:!0},useFirstLastLinks:{type:Boolean,default:!0},useBoundariesNumbersLinks:{type:Boolean,default:!1},useNextPrevLinks:{type:Boolean,default:!1},firstText:{type:String,default:"«"},lastText:{type:String,default:"»"},nextText:{type:String,default:"<"},previousText:{type:String,default:">"},useEllipses:{type:Boolean,default:!0},rotate:{type:Boolean,default:!0},maxPageItems:{type:Number,default:5},itemsPerPage:{type:Number,default:15},totalItems:{type:Number,required:!0},currentPage:{type:Number,required:!0}},computed:{is_last_page:function t(){return this.currentPage===this.total_pages},is_first_page:function t(){return 1===this.currentPage},total_pages:function t(){var t=this.itemsPerPage<1?1:Math.ceil(this.totalItems/this.itemsPerPage);return Math.max(t||0,1)},from:function t(){return this.is_first_page?1:this.itemsPerPage*(this.currentPage-1)+1},to:function t(){return this.is_last_page?this.totalItems:this.itemsPerPage*this.currentPage},pages:function t(){var t=[];if(this.currentPage<=0||this.currentPage>this.total_pages)return t;var e=1,n=this.total_pages,r=this.isDefined(this.maxPageItems)&&this.maxPageItems<this.total_pages;r&&(this.rotate?(e=Math.max(this.currentPage-Math.floor(this.maxPageItems/2),1),n=e+this.maxPageItems-1,n>this.total_pages&&(n=this.total_pages,e=n-this.maxPageItems+1)):(e=(Math.ceil(this.currentPage/this.maxPageItems)-1)*this.maxPageItems+1,n=Math.min(e+this.maxPageItems-1,this.total_pages)));for(var i=e;i<=n;i++){var o=this.makePage(i,i,i===this.currentPage);t.push(o)}if(r&&this.maxPageItems>0&&(!this.rotate||this.useEllipses||this.useBoundariesNumbersLinks)){if(e>1){if(!this.useBoundariesNumbersLinks||e>3){var s=this.makePage(e-1,"...",!1);t.unshift(s)}if(this.useBoundariesNumbersLinks){if(3===e){var a=this.makePage(2,"2",!1);t.unshift(a)}var u=this.makePage(1,"1",!1);t.unshift(u)}}if(n<this.total_pages){if(!this.useBoundariesNumbersLinks||n<this.total_pages-2){var c=this.makePage(n+1,"...",!1);t.push(c)}if(this.useBoundariesNumbersLinks){if(n===this.total_pages-2){var f=this.makePage(this.total_pages-1,this.total_pages-1,!1);t.push(f)}var l=this.makePage(this.total_pages,this.total_pages,!1);t.push(l)}}}return t}},methods:{selectPage:function t(e){this.$emit("pagination:change",e)},isDefined:function t(e){return"undefined"!==typeof e},makePage:function t(e,n,r){return{number:e,label:n,active:r}}}},y={mixins:[_]},x=y,b=p(x,g,m,!1,null,null,null),P=b.exports,w=d;n.d(e,"VueTable",function(){return d}),n.d(e,"vueTableMixin",function(){return c}),n.d(e,"VueTablePagination",function(){return P}),n.d(e,"vueTablePaginationMixin",function(){return _});var k=e["default"]=w},"/e88":function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},"0/R4":function(t,e){t.exports=function(t){return"object"===typeof t?null!==t:"function"===typeof t}},"0sh+":function(t,e,n){var r=n("quPj"),i=n("vhPU");t.exports=function(t,e,n){if(r(e))throw TypeError("String#"+n+" doesn't accept regex!");return String(i(t))}},"2OiF":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},"4R4u":function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},DVgA:function(t,e,n){var r=n("zhAb"),i=n("4R4u");t.exports=Object.keys||function t(e){return r(e,i)}},EemH:function(t,e,n){var r=n("UqcF"),i=n("RjD/"),o=n("aCFj"),s=n("apmT"),a=n("aagx"),u=n("xpql"),c=Object.getOwnPropertyDescriptor;e.f=n("nh4g")?c:function t(e,n){if(e=o(e),n=s(n,!0),u)try{return c(e,n)}catch(t){}if(a(e,n))return i(!r.f.call(e,n),e[n])}},FJW5:function(t,e,n){var r=n("hswa"),i=n("y3w9"),o=n("DVgA");t.exports=n("nh4g")?Object.defineProperties:function t(e,n){i(e);var s=o(n),a=s.length,u=0,c;while(a>u)r.f(e,c=s[u++],n[c]);return e}},HrLf:function(t,e,n){if("undefined"!==typeof window){let t;(t=window.document.currentScript)&&(t=t.src.match(/(.+\/)[^/]+\.js$/))&&(n.p=t[1])}},Iw71:function(t,e,n){var r=n("0/R4"),i=n("dyZX").document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},K0xU:function(t,e,n){var r=n("VTer")("wks"),i=n("ylqs"),o=n("dyZX").Symbol,s="function"==typeof o,a=t.exports=function(t){return r[t]||(r[t]=s&&o[t]||(s?o:i)("Symbol."+t))};a.store=r},KroJ:function(t,e,n){var r=n("dyZX"),i=n("Mukb"),o=n("aagx"),s=n("ylqs")("src"),a="toString",u=Function[a],c=(""+u).split(a);n("g3g5").inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,a){var u="function"==typeof n;u&&(o(n,"name")||i(n,"name",e)),t[e]!==n&&(u&&(o(n,s)||i(n,s,t[e]?""+t[e]:c.join(String(e)))),t===r?t[e]=n:a?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,a,function t(){return"function"==typeof this&&this[s]||u.call(this)})},Kuth:function(t,e,n){var r=n("y3w9"),i=n("FJW5"),o=n("4R4u"),s=n("YTvA")("IE_PROTO"),a=function(){},u="prototype",c=function(){var t=n("Iw71")("iframe"),e=o.length,r="<",i=">",s;t.style.display="none",n("+rLv").appendChild(t),t.src="javascript:",s=t.contentWindow.document,s.open(),s.write(r+"script"+i+"document.F=Object"+r+"/script"+i),s.close(),c=s.F;while(e--)delete c[u][o[e]];return c()};t.exports=Object.create||function t(e,n){var o;return null!==e?(a[u]=r(e),o=new a,a[u]=null,o[s]=e):o=c(),void 0===n?o:i(o,n)}},L9s1:function(t,e,n){"use strict";var r=n("XKFU"),i=n("0sh+"),o="includes";r(r.P+r.F*n("UUeW")(o),"String",{includes:function t(e){return!!~i(this,e,o).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},LQAc:function(t,e){t.exports=!1},LZWt:function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},Mukb:function(t,e,n){var r=n("hswa"),i=n("RjD/");t.exports=n("nh4g")?function(t,e,n){return r.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},RYi7:function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},"RjD/":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},UUeW:function(t,e,n){var r=n("K0xU")("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[r]=!1,!"/./"[t](e)}catch(t){}}return!0}},UqcF:function(t,e){e.f={}.propertyIsEnumerable},VTer:function(t,e,n){var r=n("g3g5"),i=n("dyZX"),o="__core-js_shared__",s=i[o]||(i[o]={});(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n("LQAc")?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},XKFU:function(t,e,n){var r=n("dyZX"),i=n("g3g5"),o=n("Mukb"),s=n("KroJ"),a=n("m0Pp"),u="prototype",c=function(t,e,n){var f=t&c.F,l=t&c.G,p=t&c.S,h=t&c.P,d=t&c.B,g=l?r:p?r[e]||(r[e]={}):(r[e]||{})[u],m=l?i:i[e]||(i[e]={}),v=m[u]||(m[u]={}),_,y,x,b;for(_ in l&&(n=e),n)y=!f&&g&&void 0!==g[_],x=(y?g:n)[_],b=d&&y?a(x,r):h&&"function"==typeof x?a(Function.call,x):x,g&&s(g,_,x,t&c.U),m[_]!=x&&o(m,_,b),h&&v[_]!=x&&(v[_]=x)};r.core=i,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},Xbzi:function(t,e,n){var r=n("0/R4"),i=n("i5dc").set;t.exports=function(t,e,n){var o=e.constructor,s;return o!==n&&"function"==typeof o&&(s=o.prototype)!==n.prototype&&r(s)&&i&&i(t,s),t}},YTvA:function(t,e,n){var r=n("VTer")("keys"),i=n("ylqs");t.exports=function(t){return r[t]||(r[t]=i(t))}},Ymqv:function(t,e,n){var r=n("LZWt");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},Z2Ku:function(t,e,n){"use strict";var r=n("XKFU"),i=n("w2a5")(!0);r(r.P,"Array",{includes:function t(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n("nGyu")("includes")},aCFj:function(t,e,n){var r=n("Ymqv"),i=n("vhPU");t.exports=function(t){return r(i(t))}},aagx:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},apmT:function(t,e,n){var r=n("0/R4");t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},"d/Gc":function(t,e,n){var r=n("RYi7"),i=Math.max,o=Math.min;t.exports=function(t,e){return t=r(t),t<0?i(t+e,0):o(t,e)}},dyZX:function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},eeVq:function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},"f3/d":function(t,e,n){var r=n("hswa").f,i=Function.prototype,o=/^\s*function ([^ (]*)/,s="name";s in i||n("nh4g")&&r(i,s,{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},g3g5:function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},hswa:function(t,e,n){var r=n("y3w9"),i=n("xpql"),o=n("apmT"),s=Object.defineProperty;e.f=n("nh4g")?Object.defineProperty:function t(e,n,a){if(r(e),n=o(n,!0),r(a),i)try{return s(e,n,a)}catch(t){}if("get"in a||"set"in a)throw TypeError("Accessors not supported!");return"value"in a&&(e[n]=a.value),e}},i5dc:function(t,e,n){var r=n("0/R4"),i=n("y3w9"),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,r){try{r=n("m0Pp")(Function.call,n("EemH").f(Object.prototype,"__proto__").set,2),r(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function t(n,i){return o(n,i),e?n.__proto__=i:r(n,i),n}}({},!1):void 0),check:o}},kJMx:function(t,e,n){var r=n("zhAb"),i=n("4R4u").concat("length","prototype");e.f=Object.getOwnPropertyNames||function t(e){return r(e,i)}},m0Pp:function(t,e,n){var r=n("2OiF");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},nGyu:function(t,e,n){var r=n("K0xU")("unscopables"),i=Array.prototype;void 0==i[r]&&n("Mukb")(i,r,{}),t.exports=function(t){i[r][t]=!0}},ne8i:function(t,e,n){var r=n("RYi7"),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},nh4g:function(t,e,n){t.exports=!n("eeVq")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},qncB:function(t,e,n){var r=n("XKFU"),i=n("vhPU"),o=n("eeVq"),s=n("/e88"),a="["+s+"]",u="
",c=RegExp("^"+a+a+"*"),f=RegExp(a+a+"*$"),l=function(t,e,n){var i={},a=o(function(){return!!s[t]()||u[t]()!=u}),c=i[t]=a?e(p):s[t];n&&(i[n]=c),r(r.P+r.F*a,"String",i)},p=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(c,"")),2&e&&(t=t.replace(f,"")),t};t.exports=l},quPj:function(t,e,n){var r=n("0/R4"),i=n("LZWt"),o=n("K0xU")("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[o])?!!e:"RegExp"==i(t))}},vhPU:function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},w2a5:function(t,e,n){var r=n("aCFj"),i=n("ne8i"),o=n("d/Gc");t.exports=function(t){return function(e,n,s){var a=r(e),u=i(a.length),c=o(s,u),f;if(t&&n!=n){while(u>c)if(f=a[c++],f!=f)return!0}else for(;u>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},xfY5:function(t,e,n){"use strict";var r=n("dyZX"),i=n("aagx"),o=n("LZWt"),s=n("Xbzi"),a=n("apmT"),u=n("eeVq"),c=n("kJMx").f,f=n("EemH").f,l=n("hswa").f,p=n("qncB").trim,h="Number",d=r[h],g=d,m=d.prototype,v=o(n("Kuth")(m))==h,_="trim"in String.prototype,y=function(t){var e=a(t,!1);if("string"==typeof e&&e.length>2){e=_?e.trim():p(e,3);var n=e.charCodeAt(0),r,i,o;if(43===n||45===n){if(r=e.charCodeAt(2),88===r||120===r)return NaN}else if(48===n){switch(e.charCodeAt(1)){case 66:case 98:i=2,o=49;break;case 79:case 111:i=8,o=55;break;default:return+e}for(var s=e.slice(2),u=0,c=s.length,f;u<c;u++)if(f=s.charCodeAt(u),f<48||f>o)return NaN;return parseInt(s,i)}}return+e};if(!d(" 0o1")||!d("0b1")||d("+0x1")){d=function t(e){var n=arguments.length<1?0:e,r=this;return r instanceof d&&(v?u(function(){m.valueOf.call(r)}):o(r)!=h)?s(new g(y(n)),r,d):y(n)};for(var x=n("nh4g")?c(g):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),b=0,P;x.length>b;b++)i(g,P=x[b])&&!i(d,P)&&l(d,P,f(g,P));d.prototype=m,m.constructor=d,n("KroJ")(r,h,d)}},xpql:function(t,e,n){t.exports=!n("nh4g")&&!n("eeVq")(function(){return 7!=Object.defineProperty(n("Iw71")("div"),"a",{get:function(){return 7}}).a})},y3w9:function(t,e,n){var r=n("0/R4");t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},ylqs:function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},zhAb:function(t,e,n){var r=n("aagx"),i=n("aCFj"),o=n("w2a5")(!1),s=n("YTvA")("IE_PROTO");t.exports=function(t,e){var n=i(t),a=0,u=[],c;for(c in n)c!=s&&r(n,c)&&u.push(c);while(e.length>a)r(n,c=e[a++])&&(~o(u,c)||u.push(c));return u}}})});
//# sourceMappingURL=VueTable.umd.min.js.map