引入 cookie 报错
写在要用的方法下面就可以了
handleClickSubmit= async ()=>{
const [setCookie] = useCookies(["user"])
let param={
reqName:'P_LOGIN',
email:this.state.username,
password:this.state.password,
}
let result = await $fetch('post',P_LOGIN,param)
// let res = await result; //必须通过此方法才可返回数据
if(result.code='00000'){
setCookie("user", JSON.stringify(data), {//调用
path: "/",
maxAge: 3600, // cookeie 一小时后过期
sameSite: true,
})
}
console.log(result,'resultresult')
// this.setState({datas:res.data})
// Router.push({pathname:'/user'})
}