@fy-/fws-vue 0.6.4 → 0.6.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.
- package/composables/seo.ts +0 -4
- package/package.json +1 -1
package/composables/seo.ts
CHANGED
|
@@ -106,13 +106,9 @@ export const useSeo = (seo: Ref<LazyHead>, initial: boolean = false) => {
|
|
|
106
106
|
|
|
107
107
|
metaPairs.forEach(([seoKey, ...properties]) => {
|
|
108
108
|
const seoValue = seo.value[seoKey as keyof LazyHead];
|
|
109
|
-
console.log(
|
|
110
|
-
`seoKey: ${seoKey}, properties: ${properties}, seoValue: ${seoValue}`,
|
|
111
|
-
);
|
|
112
109
|
|
|
113
110
|
if (seoValue !== undefined && seoValue !== null && seoValue !== "") {
|
|
114
111
|
properties.forEach((property) => {
|
|
115
|
-
console.log(`property: ${property}`);
|
|
116
112
|
if (
|
|
117
113
|
property === "description" ||
|
|
118
114
|
property === "keywords" ||
|