Tag Archives: Summary of common errors in the vue development process

Type error: object (…) is not a function

error description:

TypeError: Object(...) is not a function

this problem is common for the following reasons:

data and methods in the same name, the solution: change the name.

I’ll discuss another error here: the same error we would have made if we hadn’t added the double brackets when we introduced the axios method

the error code is as follows:

the correct code is as follows: