使用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#插件开发者须知
可以把import Vue from 'vue'
和Vue.use(Vuex)
注释掉,然后重新编译就通过了: