@fy-/fws-vue 2.0.52 → 2.0.55
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 +0 -2
- package/package.json +1 -1
package/composables/seo.ts
CHANGED
|
@@ -116,7 +116,6 @@ 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
|
-
/*
|
|
120
119
|
ogImageSecureUrl: () => {
|
|
121
120
|
if (seoData.value.image) {
|
|
122
121
|
if (seoData.value.image.includes("?vars=")) {
|
|
@@ -132,7 +131,6 @@ export const useSeo = (seoData: Ref<LazyHead>, initial: boolean = false) => {
|
|
|
132
131
|
return seoData.value.image;
|
|
133
132
|
}
|
|
134
133
|
},
|
|
135
|
-
*/
|
|
136
134
|
ogImageUrl: () => {
|
|
137
135
|
if (seoData.value.image) {
|
|
138
136
|
if (seoData.value.image.includes("?vars=")) {
|