logout.js 269 字节
Newer Older
1
const {
DCloud_JSON's avatar
DCloud_JSON 已提交
2 3
  logout
} = require('../../lib/utils/logout')
4 5 6 7 8 9 10

/**
 * 用户退出登录
 * @tutorial https://uniapp.dcloud.net.cn/uniCloud/uni-id-pages.html#logout
 * @returns
 */
module.exports = async function () {
DCloud_JSON's avatar
DCloud_JSON 已提交
11
  await logout.call(this)
12 13 14 15
  return {
    errCode: 0
  }
}