@fy-/fws-vue 0.0.3 → 0.0.5
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.
|
@@ -68,11 +68,7 @@ useSeo(seo);
|
|
|
68
68
|
class="!hidden md:!flex"
|
|
69
69
|
/>
|
|
70
70
|
</div>
|
|
71
|
-
<article
|
|
72
|
-
class="h-full flex flex-col scrollbar-hidden"
|
|
73
|
-
itemscope
|
|
74
|
-
itemtype="https://schema.org/Article"
|
|
75
|
-
>
|
|
71
|
+
<article itemscope itemtype="https://schema.org/Article">
|
|
76
72
|
<meta itemprop="wordCount" :content="post.WordCount" />
|
|
77
73
|
<meta itemprop="datePublished" :content="post.CreatedAt.iso" />
|
|
78
74
|
<meta itemprop="dateModified" :content="post.UpdatedAt.iso" />
|
|
@@ -83,12 +79,12 @@ useSeo(seo);
|
|
|
83
79
|
v-if="post.CoverUUID"
|
|
84
80
|
:content="`https://s.nocachenocry.com/${post.CoverUUID}?vars=format=webp:resize=512x512`"
|
|
85
81
|
/>
|
|
86
|
-
<div class="py-8
|
|
87
|
-
<
|
|
82
|
+
<div class="py-8 px-4">
|
|
83
|
+
<h1
|
|
88
84
|
class="mb-4 text-4xl tracking-tight font-extrabold text-center text-fv-neutral-900 dark:text-white"
|
|
89
85
|
>
|
|
90
86
|
{{ post.Title }}
|
|
91
|
-
</
|
|
87
|
+
</h1>
|
|
92
88
|
<p
|
|
93
89
|
class="font-light text-center text-fv-neutral-500 dark:text-fv-neutral-400 sm:text-xl"
|
|
94
90
|
>
|
|
@@ -99,15 +95,13 @@ useSeo(seo);
|
|
|
99
95
|
v-if="post.CoverUUID"
|
|
100
96
|
:src="`https://s.nocachenocry.com/${post.CoverUUID}?vars=format=webp:resize=768x768`"
|
|
101
97
|
:alt="post.Title"
|
|
102
|
-
class="h-auto rounded-xl shadow max-w-[768px] mx-auto mb-6"
|
|
98
|
+
class="h-auto rounded-xl shadow max-w-[768px] max-h-[280px] mx-auto mb-6"
|
|
103
99
|
/>
|
|
104
|
-
<
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
></section>
|
|
110
|
-
</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>
|
|
111
105
|
</article>
|
|
112
106
|
</div>
|
|
113
107
|
<component :is="notFound" v-if="is404" />
|