Newer
Older
VueSharedPrinting / src / utils / quit.js
hanfei on 30 Jan 2024 226 bytes han
// 退出登录
function quit(){
    this.cite.memberLoginVo = ''
    this.cite.fileNum = 0
    if(this.$route.name != 'device') {
        this.$router.push({
            name: 'device'
        })
    }
}

export default quit