
番茄
标题 2
这里是内容。
标题 3
这里是内容。
...小于 1 分钟

more 注释之前的内容被视为文章摘要。
VuePress 主要从 Markdown 文件生成页面。因此,你可以使用它轻松生成文档或博客站点。
你应该创建和编写 Markdown 文件,以便 VuePress 可以根据文件结构将它们转换为不同的页面。
<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>