🐛 Fix bugs

This commit is contained in:
LittleSheep 2025-03-20 00:02:05 +08:00
parent 6304305ff6
commit 4efa211e9e
3 changed files with 4 additions and 4 deletions

View File

@ -76,6 +76,6 @@ const config = useRuntimeConfig()
const { t } = useI18n() const { t } = useI18n()
const url = computed(() => const url = computed(() =>
props.post.alias ? `/posts/${props.post.area_alias}/${props.post.alias}` : `/posts/${props.post.id}`, props.post?.alias ? `/posts/${props.post?.alias_prefix}/${props.post?.alias}` : `/posts/${props.post?.id}`,
) )
</script> </script>

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="my-2"> <div class="my-2">
<div v-if="status == 'pending'">{{ t("loading") }}</div> <post-item v-if="status === 'success'" class="no-margin-post" :post="post" :force-show-content="props.forceShowContent" />
<post-item v-else class="no-margin-post" :post="post" :force-show-content="props.forceShowContent" /> <div v-else>{{ t("loading") }}</div>
</div> </div>
</template> </template>

View File

@ -22,6 +22,6 @@ downloads:
AceField which is stands for wonderful place to battle. AceField which is stands for wonderful place to battle.
We can't just use the name Battlefield because it already became a trademark of Electronic Arts. We can't just use the name Battlefield because it already became a trademark of Electronic Arts.
:embed-download-link{:items='downloads'} :embed-download-link{items='downloads'}
:embed-post-item{id=914} :embed-post-item{id=914}