html
<el-menu-item index="2" @click="quitFn">
<i class="el-icon-switch-button">退出</i>
</el-menu-item>
js
quitFn() {
// 为了让用户体验更好,来个确认提示框
this.$confirm("确认退出登录吗?退出登录前请保存更改好的内容", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
// 他选择了确定
this.$store.commit("updateToken", "");
this.$router.push("/login");
})
.catch(() => {
// 他选择了取消
});
},