-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The environment created by vue-cli cannot determine the type of async function #3653
Comments
Hello, your issue has been closed because it does not conform to our issue requirements. In order to ensure every issue provides the necessary information for us to investigate, we require the use of the Issue Helper when creating new issues. Thank you! |
This was referenced Aug 18, 2021
This was referenced Sep 12, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following code:
`
mounted() {
let str = Object.getPrototypeOf(this.test1).constructor;
console.log(str); // ƒ Function() { [native code] }
}
methods: {
async test1() {
}
`
The text was updated successfully, but these errors were encountered: