Uncaught (in promise) TypeError: selfHook.call is not a function

Viewed 3848
2 Answers

i Don't know is it right or wrong but you can delete vue-performance extension..This is a workaround for me and then check.If it still remain you can tell me i will delete the answere....

I reproduced the problem. If hooks are used as property instead of functions.

Bug generated:

const VerificaSezioniConfig = {
    delimiters:['[[',']]'],
    data(){
        return{
            sezioni:[1,2]
        }
    },
    mounted:{}
}

No Bug:

const VerificaSezioniConfig = {
    delimiters:['[[',']]'],
    data(){
        return{
            sezioni:[1,2]
        }
    },
    mounted(){}
}
Related