diff --git a/src/plugin/export/_csv.js b/src/plugin/export/_csv.js index 43a329ac..de2796cb 100755 --- a/src/plugin/export/_csv.js +++ b/src/plugin/export/_csv.js @@ -30,7 +30,6 @@ export default function csv(columns, datas, options, noHeader = false) { if (columns) { columnOrder = columns.map(v => { - console.log(v) if (typeof v === 'string') return v; if (!noHeader) { column.push(typeof v.label !== 'undefined' ? v.label : v.prop);