Vue Rendering Problem The back end receives a 200ok signal, but the front end page does not show any results.
methods:{
async created() {
try {
let response = await axios.get('http://localhost:5000/process')
this.msg = response.data
this.msg.$forceUpdate()
} catch (err) {
// eslint-disable-next-line
console.log(err)
}
}
},
};
I've tried many things, such as forced asynchronous update rendering, but the results are still the same.