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
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
this would allow updating dependencies piece by piece instead of needing to do it all at once