quick export WIP

This commit is contained in:
Jan Prochazka
2021-06-03 20:58:38 +02:00
parent 6362e2137b
commit 6b8bf8161e
6 changed files with 197 additions and 90 deletions

View File

@@ -64,5 +64,18 @@ const fileFormat = {
export default {
fileFormats: [fileFormat],
quickExports: [
{
label: 'MS Excel',
extension: 'xlsx',
createWriter: (fileName) => ({
functionName: 'writer',
props: {
fileName,
sheetName: 'data',
},
}),
},
],
initialize,
};