You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
但是我把main.js 修改成const VueCompositionAPI = require("@vue/composition-api");,这样确实不会报Error: [vue-composition-api] must call Vue.use(错误了 但是composition-api就会报错TypeError: Cannot read properties of undefined (reading 'text')"
The text was updated successfully, but these errors were encountered:
linzhe141
changed the title
客户端使用,vuecli 打包出来的commonjs模式的库,出现“Error: [vue-composition-api] must call Vue.use(VueCompositionAPI) before using any functio”
客户端使用vuecli 打包出来的commonjs模式的库,出现“Error: [vue-composition-api] must call Vue.use(VueCompositionAPI) before using any functio”
Sep 2, 2023
客户端
1、main.js
2、app.vue
lib
1、组件TestDisplay
2、vue.config.js
3、
"build": "vue-cli-service build --mode production --target lib src/index.js"
报错vue.runtime.esm.js:619 [Vue warn]: Error in data(): "Error: [vue-composition-api] must call Vue.use(VueCompositionAPI) before using any function."
我排查了下好像是因为库文件和客户端使用的入口不一样导致这个问题的,客户端使用mjs,库使用commonjs

但是我把main.js 修改成
const VueCompositionAPI = require("@vue/composition-api");
,这样确实不会报Error: [vue-composition-api] must call Vue.use(
错误了但是composition-api就会报错
TypeError: Cannot read properties of undefined (reading 'text')"
The text was updated successfully, but these errors were encountered: