vuejs / composition-api

Composition API plugin for Vue 2
https://composition-api.vuejs.org/
MIT License
4.19k stars 343 forks source link

Vue 2.7 #994

Open SampsonCrowley opened 1 month ago

SampsonCrowley commented 1 month ago

In trying to transition to Vue 2.7 to then be able to transition to Vue3, many dependencies rely on this package. it would be very helpful if instead of completely removing all support for 2.7, this is instead just a passthrough package for plain vue if vue is >= 2.7

like just

export * from '@vue'

export default {
  install() {
    /* do nothing */
  }
}

this would allow updating dependencies piece by piece instead of needing to do it all at once