@fy-/fws-vue 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -79,7 +79,7 @@ useSeo(seo);
|
|
|
79
79
|
v-if="post.CoverUUID"
|
|
80
80
|
:content="`https://s.nocachenocry.com/${post.CoverUUID}?vars=format=webp:resize=512x512`"
|
|
81
81
|
/>
|
|
82
|
-
<div class="py-
|
|
82
|
+
<div class="py-4 px-4 max-w-6xl mx-auto">
|
|
83
83
|
<h1
|
|
84
84
|
class="mb-4 text-4xl tracking-tight font-extrabold text-center text-fv-neutral-900 dark:text-white"
|
|
85
85
|
>
|
|
@@ -97,13 +97,11 @@ useSeo(seo);
|
|
|
97
97
|
:alt="post.Title"
|
|
98
98
|
class="h-auto rounded-xl shadow max-w-[768px] max-h-[280px] mx-auto mb-6"
|
|
99
99
|
/>
|
|
100
|
-
<
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
></section>
|
|
106
|
-
</div>
|
|
100
|
+
<section
|
|
101
|
+
itemprop="articleBody"
|
|
102
|
+
class="prose dark:prose-invert max-w-6xl mx-auto mb-6"
|
|
103
|
+
v-html="post.Body"
|
|
104
|
+
></section>
|
|
107
105
|
</article>
|
|
108
106
|
</div>
|
|
109
107
|
<component :is="notFound" v-if="is404" />
|