vue2我这样写没问题,vue3,js版我改怎么写。
export default {
name: 'Login',
data() {
return {
};
},
created() {
this.getSession();
},
methods: {
async handleLogin() {
const res1 = await this.$API.login.login(this.loginForm)
}
}
};
其实是一样的: