🔱: [client] sync upgrade with 7 commits [trident-sync]

chore:
Merge branch 'vben'

# Conflicts:
#	package.json
perf: antdv示例改成使用vben框架
chore: vben
chore: vben
chore: vben
This commit is contained in:
GitHub Actions Bot
2025-03-03 19:24:51 +00:00
parent de26ee9383
commit 335d175d57
649 changed files with 36984 additions and 826 deletions
@@ -0,0 +1,19 @@
<template>
<a-result status="403" title="403" sub-title="Sorry, 拒绝访问 .">
<template #extra>
<a-button type="primary" @click="toHome">返回首页 Back Home </a-button>
</template>
</a-result>
</template>
<script lang="ts">
export default {
// eslint-disable-next-line vue/multi-word-component-names
name: "Exception403",
methods: {
toHome() {
this.$router.push({ path: "/" });
}
}
};
</script>