陌上华年
陌上华年
  • 发布:2023-04-02 18:32
  • 更新:2023-04-03 14:43
  • 阅读:276

【报Bug】 vue2使用@vue/composition-api和vue3条件编译存在问题

分类:uni-app

产品分类: uniapp/H5

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: win11

HBuilderX类型: Alpha

HBuilderX版本号: 3.7.12

浏览器平台: Chrome

浏览器版本: 99.0.4844.84

项目创建方式: HBuilderX

操作步骤:
// #ifdef VUE3  
 import {getCurrentInstance, watch, onUnmounted} from 'vue';  
// #endif  
// #ifndef VUE3  
import {getCurrentInstance, watch, onUnmounted} from '@vue/composition-api';  
// #endif

预期结果:

正常

实际结果:

报错

bug描述:

在vue2下使用条件编译导入@vue/composition-apivue会报错。

2023-04-02 18:32 负责人:无 分享
已邀请:
DCloud_UNI_GSQ

DCloud_UNI_GSQ

// #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

要回复问题请先登录注册