[Vuejs]-Method not changing variable

0๐Ÿ‘

โœ…

If you are using Vue 2.0, ready has been replaced with mounted. Please check the documentation here.

....
mounted () {
    this.setUnsupported()
}
....

Leave a comment