[Untitled] typeError: this.postRequest is not a function"

Project scenario:

 this.postRequest is not a function appears in vue


 

Problem Description

 
 

Cause Analysis:

Missing import in main.js


 

solution:

Add the following code to main.js

import {postRequest} from "./utils/api";

Vue.prototype.postRequest = postRequest;

Guess you like

Origin blog.csdn.net/weixin_60249074/article/details/127109565