Skip to content

Commit

Permalink
chore: new build file
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungwoo321 committed Nov 7, 2022
1 parent 425d381 commit 827a594
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion dist/vue-pivottable.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,19 @@ const Fn = {
name: "tsv-export-renderers",
mixins: [we],
render(t) {
const n = new Ot(this.$props), r = n.getRowKeys(), e = n.getColKeys();
let n = null;
try {
const a = Object.assign(
{},
this.$props,
this.$attrs.props
);
n = new Ot(a);
} catch (a) {
if (console && console.error(a.stack))
return this.computeError(t);
}
const r = n.getRowKeys(), e = n.getColKeys();
r.length === 0 && r.push([]), e.length === 0 && e.push([]);
const i = n.props.rows.map((a) => a);
e.length === 1 && e[0].length === 0 ? i.push(this.aggregatorName) : e.map((a) => i.push(a.join("-")));
Expand Down
Loading

0 comments on commit 827a594

Please sign in to comment.