Search code examples
vue.jsvuejs2version

Which version of VueJs am I currently using?


How to print, display or find your current VueJS version?

All I can see is in my package.json object with dependencies where it says ^2.5.13

"dependencies": {
    "vue": "^2.5.13",
}

Solution

  • The vue instance holds information like, in your case the version. Vue version

    Usage: Import vue on the file you want to use it

    import Vue from 'vue'
    

    and then just do

    Vue.version