@fy-/fws-vue 0.0.2 → 0.0.4
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.
- package/components/fws/CmsArticleSingle.vue +4 -8
- package/index.ts +2 -2
- package/package.json +1 -1
|
@@ -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" />
|
|
@@ -84,11 +80,11 @@ useSeo(seo);
|
|
|
84
80
|
:content="`https://s.nocachenocry.com/${post.CoverUUID}?vars=format=webp:resize=512x512`"
|
|
85
81
|
/>
|
|
86
82
|
<div class="py-8 container xl:max-w-6xl mx-auto px-4">
|
|
87
|
-
<
|
|
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,7 +95,7 @@ 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
100
|
<div class="page-clear-container relative mb-6">
|
|
105
101
|
<section
|
package/index.ts
CHANGED
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
formatDatetime,
|
|
17
17
|
formatTimeago,
|
|
18
18
|
} from "./templating";
|
|
19
|
+
import { useRest } from "./rest";
|
|
19
20
|
export * from "./stores/serverRouter";
|
|
20
21
|
|
|
21
22
|
// Components/UI/Transitions
|
|
@@ -30,7 +31,6 @@ import DefaultInput from "./components/ui/DefaultInput.vue";
|
|
|
30
31
|
import DefaultModal from "./components/ui/DefaultModal.vue";
|
|
31
32
|
import DefaultConfirm from "./components/ui/DefaultConfirm.vue";
|
|
32
33
|
import DefaultPaging from "./components/ui/DefaultPaging.vue";
|
|
33
|
-
import DefaultLoading from "./components/ui/DefaultLoading.vue";
|
|
34
34
|
import DefaultBreadcrumb from "./components/ui/DefaultBreadcrumb.vue";
|
|
35
35
|
import DefaultLoader from "./components/ui/DefaultLoader.vue";
|
|
36
36
|
|
|
@@ -96,6 +96,7 @@ export {
|
|
|
96
96
|
useSeo,
|
|
97
97
|
useUserStore,
|
|
98
98
|
useUserCheck,
|
|
99
|
+
useRest,
|
|
99
100
|
|
|
100
101
|
// Components
|
|
101
102
|
// UI/Transitions
|
|
@@ -110,7 +111,6 @@ export {
|
|
|
110
111
|
DefaultModal,
|
|
111
112
|
DefaultConfirm,
|
|
112
113
|
DefaultPaging,
|
|
113
|
-
DefaultLoading,
|
|
114
114
|
DefaultBreadcrumb,
|
|
115
115
|
DefaultLoader,
|
|
116
116
|
|