@fy-/fws-vue 0.6.2 → 0.6.3

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.
@@ -106,9 +106,9 @@ export const useSeo = (seo: Ref<LazyHead>, initial: boolean = false) => {
106
106
 
107
107
  metaPairs.forEach(([seoKey, ...properties]) => {
108
108
  properties.forEach((property) => {
109
- if (seo.value[property as keyof LazyHead]) {
110
- console.log("property:", property);
111
- console.log("seokKey:", seoKey);
109
+ console.log("property:", property);
110
+ console.log("seokKey:", seoKey);
111
+ if (seo.value[seoKey as keyof LazyHead]) {
112
112
  if (
113
113
  property === "description" ||
114
114
  property === "keywords" ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {