@fy-/fws-vue 2.0.51 → 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.
- package/composables/seo.ts +2 -0
- package/package.json +1 -1
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=")) {
|