草莓
标题 2
<script setup>
import {showModal} from "@/composables/utils.js";
import {store} from "@/store/index.js";
const handleLogout = () => {
showModal('是否退出登录','warning').then(
()=> {
// 派发退出登录
store.dispatch('logoutActions')
}).catch(() => false)
}
</script>
...小于 1 分钟