编译uni-app报错:“default“ is not exported by “node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js“

听海边涛声 2024-07-23 13:35:22 阅读 94

使用Vue3,在HBuilder中编译uni-app应用报错:“default” is not exported by “node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js”, imported by

在这里插入图片描述

原因是在Vue3中,use这个API已经无法使用了:

https://v3-migration.vuejs.org/zh/breaking-changes/global-api.html#%E6%8F%92%E4%BB%B6%E5%BC%80%E5%8F%91%E8%80%85%E9%A1%BB%E7%9F%A5

在这里插入图片描述

可以把<code>import Vue from 'vue'code>和Vue.use(Vuex)注释掉,然后重新编译就通过了:

在这里插入图片描述



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。