Vue 版本的图片上传报 Uncaught (in promise) TypeError: selectFiles is not a function
hspprogrammer opened this issue · 3 comments
hspprogrammer commented
原因是const selectFiles = require("select-files").default;需要加default
yumengzhong commented
我也遇到了这个问题,版本是 @bytemd/vue-next": "1.21.0","bytemd": "1.21.0"
有其他解决方案吗,也不能去他的源码里改吧
LinOneZ commented
遇到加一
ah-sc commented
通过添加 webpack alias配置,将 select-files 指向本地文件可以解决:
config.resolve.alias.set('select-files', require.resolve('./src/common/select-files'));