Home > front end >  Where is Vue 3 versions list?
Where is Vue 3 versions list?

Time:12-12

On the Vue installation page they recommend including this to html "for prototyping purposes":

<script src="https://unpkg.com/vue@next"></script>

And also warn that it is recommended to link to a specific version "for production":

For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions.

But where is the list of the available versions?

I searched on the installation page. I went to their Github and didn't find a list there. Where do I look? please help

CodePudding user response:

Their GitHub page (Google query "vue 3 releases"): https://github.com/vuejs/vue-next/releases

  • Related