adapter-vue-uniapp.ts 190 B

123456789101112
  1. let vueVersion: number;
  2. // #ifndef VUE3
  3. export * from '@vue/composition-api';
  4. vueVersion = 2;
  5. // #endif
  6. // #ifdef VUE3
  7. export * from 'vue';
  8. vueVersion = 3;
  9. // #endif
  10. export { vueVersion };