fix: 403 bugfix

This commit is contained in:
Tim
2025-08-04 11:02:37 +08:00
parent 8bd27af592
commit 9b840ca769
5 changed files with 4 additions and 4 deletions

View File

@@ -28,10 +28,10 @@ export default {
setup() {
const isFetching = ref(false)
const tabs = [
{ name: 'about', label: '关于', file: '/about/about.md' },
{ name: 'agreement', label: '用户协议', file: '/about/agreement.md' },
{ name: 'guideline', label: '创作准则', file: '/about/guideline.md' },
{ name: 'privacy', label: '隐私政策', file: '/about/privacy.md' },
{ name: 'about', label: '关于', file: '/about_markdown/about.md' },
{ name: 'agreement', label: '用户协议', file: '/about_markdown/agreement.md' },
{ name: 'guideline', label: '创作准则', file: '/about_markdown/guideline.md' },
{ name: 'privacy', label: '隐私政策', file: '/about_markdown/privacy.md' },
]
const selectedTab = ref(tabs[0].name)
const content = ref('')