We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Install libs:
npm i read-excel-file npm i export-from-json
npm i read-excel-file
npm i export-from-json
In @types create arquive 'vue-excel-xlsx.d.ts' containing: declare module 'vue-excel-xlsx'
declare module 'vue-excel-xlsx'
In plugins create excelLib.ts containing:
import VueExcelXlsx from "vue-excel-xlsx" import Vue from 'vue' Vue.use(VueExcelXlsx)
In nuxt.config.js add: plugins: [ { src: "@/plugins/excelLib", mode: "client" }, ],
plugins: [ { src: "@/plugins/excelLib", mode: "client" }, ],
In package.json add: "type": "module",
"type": "module",
In tsconfig.json modify:
"target": "ES2018", "module": "ESNext",
to
"target": "esnext", "module": "commonjs",
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: