// #ifdef VUE3
import {getCurrentInstance, watch, onUnmounted} from 'vue';
// #endif
// #ifndef VUE3
import {getCurrentInstance, watch, onUnmounted} from '@vue/composition-api';
// #endif
- 发布:2023-04-02 18:32
- 更新:2023-04-03 14:43
- 阅读:276
产品分类: uniapp/H5
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win11
HBuilderX类型: Alpha
HBuilderX版本号: 3.7.12
浏览器平台: Chrome
浏览器版本: 99.0.4844.84
项目创建方式: HBuilderX
操作步骤:
预期结果:
正常
正常
实际结果:
报错
报错
bug描述:
在vue2下使用条件编译导入@vue/composition-api
和vue
会报错。
// #ifdef VUE3
import {getCurrentInstance as getCurrentInstance3} from 'vue'
// #endif
// #ifndef VUE3
import {getCurrentInstance as getCurrentInstance2} from '@vue/composition-api'
// #endif
let getCurrentInstance
// #ifdef VUE3
getCurrentInstance = getCurrentInstance3
// #endif
// #ifndef VUE3
getCurrentInstance = getCurrentInstance2
// #endif