@fy-/fws-vue 2.0.50 → 2.0.52
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.
|
@@ -253,13 +253,14 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
253
253
|
</div>
|
|
254
254
|
<div
|
|
255
255
|
v-if="dpOptions.counterMax && model"
|
|
256
|
-
class="
|
|
256
|
+
class="text-sm text-fv-neutral-500 dark:text-fv-neutral-400"
|
|
257
257
|
:class="{
|
|
258
258
|
'text-red-500 dark:text-red-300':
|
|
259
259
|
model?.toString().length > dpOptions.counterMax,
|
|
260
260
|
}"
|
|
261
261
|
>
|
|
262
|
-
{{ model?.toString().length }} /
|
|
262
|
+
{{ model?.toString().length }} /
|
|
263
|
+
{{ dpOptions.counterMax }} characters
|
|
263
264
|
</div>
|
|
264
265
|
</div>
|
|
265
266
|
<div class="group relative" v-else-if="type == 'textarea'">
|
|
@@ -288,13 +289,14 @@ defineExpose({ focus, blur, getInputRef });
|
|
|
288
289
|
></textarea>
|
|
289
290
|
<div
|
|
290
291
|
v-if="dpOptions.counterMax && model"
|
|
291
|
-
class="
|
|
292
|
+
class="text-sm text-fv-neutral-500 dark:text-fv-neutral-400"
|
|
292
293
|
:class="{
|
|
293
294
|
'text-red-500 dark:text-red-300':
|
|
294
295
|
model?.toString().length > dpOptions.counterMax,
|
|
295
296
|
}"
|
|
296
297
|
>
|
|
297
|
-
{{ model?.toString().length }} /
|
|
298
|
+
{{ model?.toString().length }} /
|
|
299
|
+
{{ dpOptions.counterMax }} characters
|
|
298
300
|
</div>
|
|
299
301
|
</div>
|
|
300
302
|
<div class="relative" v-else-if="type == 'select'">
|
package/composables/seo.ts
CHANGED
|
@@ -116,6 +116,7 @@ export const useSeo = (seoData: Ref<LazyHead>, initial: boolean = false) => {
|
|
|
116
116
|
keywords: () => seoData.value.keywords,
|
|
117
117
|
articlePublishedTime: () => seoData.value.published,
|
|
118
118
|
articleModifiedTime: () => seoData.value.modified,
|
|
119
|
+
/*
|
|
119
120
|
ogImageSecureUrl: () => {
|
|
120
121
|
if (seoData.value.image) {
|
|
121
122
|
if (seoData.value.image.includes("?vars=")) {
|
|
@@ -131,6 +132,7 @@ export const useSeo = (seoData: Ref<LazyHead>, initial: boolean = false) => {
|
|
|
131
132
|
return seoData.value.image;
|
|
132
133
|
}
|
|
133
134
|
},
|
|
135
|
+
*/
|
|
134
136
|
ogImageUrl: () => {
|
|
135
137
|
if (seoData.value.image) {
|
|
136
138
|
if (seoData.value.image.includes("?vars=")) {
|