Fading Coder

One Final Commit for the Last Sprint

Exporting Vue el-Table Data to Formatted Excel Files

Dependecny Installation npm install xlsx xlsx-style file-saver Webpack Configuraiton Add to vue.config.js to resolve xlsx-style conflicts: module.exports = { chainWebpack: config => { config.externals({ "./cptable": "var cptable" }); } } Export Utility Implemantation Create ta...