vue-excel-editor icon indicating copy to clipboard operation
vue-excel-editor copied to clipboard

no default exports in vuedraggable and xlsx.js

Open danielKugler opened this issue 1 year ago • 2 comments

While changing to vite with a vue2 project we are now getting errors.

Uncaught SyntaxError: The requested module '/node_modules/vuedraggable/dist/vuedraggable.umd.js?v=ef55e21c' does not provide an export named 'default' (at PanelSetting.vue:2:8)
Uncaught SyntaxError: The requested module '/node_modules/xlsx/xlsx.js?v=ef55e21c' does not provide an export named 'default' (at VueExcelEditor.vue:7:8)

xlsx.js and vuedraggable seem to not provide default exports. Therefor imports have to be adjusted.

Could you please change the import in PanelSettings.vue

from: import draggable from 'vuedraggable' to: import * as draggable from 'vuedraggable'

AND in VueExcelEditor.vue

from: import XLSX from 'xlsx' to: import * as XLSX from 'xlsx'

danielKugler avatar Feb 08 '24 15:02 danielKugler

Pls hange to use vue3-excel-editor.

在 2024年2月8日週四 23:43,danielKugler @.***> 寫道:

While changing to vite with a vue2 project we are now getting errors.

Uncaught SyntaxError: The requested module '/node_modules/vuedraggable/dist/vuedraggable.umd.js?v=ef55e21c' does not provide an export named 'default' (at PanelSetting.vue:2:8)

Uncaught SyntaxError: The requested module '/node_modules/xlsx/xlsx.js?v=ef55e21c' does not provide an export named 'default' (at VueExcelEditor.vue:7:8)

xlsx.js and vuedraggable seem to not provide default exports. Therefor imports have to be adjusted.

Could you please change the import in PanelSettings.vue

from: import draggable from 'vuedraggable' to: import * as draggable from 'vuedraggable'

AND in VueExcelEditor.vue

from: import XLSX from 'xlsx' to: import * as XLSX from 'xlsx'

— Reply to this email directly, view it on GitHub https://github.com/cscan/vue-excel-editor/issues/136, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAYSOFZD6AXQUDPWLGHPKKTYSTXBFAVCNFSM6AAAAABC77A4JKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGEZDKNBYHEYTONQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

cscan avatar Feb 08 '24 23:02 cscan

As i said, it is a vue2 project.

danielKugler avatar Feb 09 '24 08:02 danielKugler