账号登出
this.$confrim
this.$confirm('真的确定要等出吗', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
const data = await login_out();
console.log(data)
localStorage.removeItem('token')
window.location.href="/"
}).catch(()=>{});