[Vuejs]-Vuejs can vue file be regarded as json compliant object definition

0👍

Its not a json its just an object with functions,objects
you can make one by your self to check it like:

export default {
    hey(){
       return true
    }
}

just import something like that and check it results

Leave a comment