@fy-/fws-vue 0.5.9 → 0.6.0

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.
@@ -92,7 +92,7 @@ export const useSeo = (seo: Ref<LazyHead>, initial: boolean = false) => {
92
92
  const metaPairs = [
93
93
  ["name", "og:site_name"],
94
94
  ["title", "og:title", "twitter:title"],
95
- ["description", "og:description", "twitter:description"],
95
+ ["og:description", "twitter:description"],
96
96
  ["published", "article:published_time"],
97
97
  ["modified", "article:modified_time"],
98
98
  ["imageWidth", "og:image:width"],
@@ -120,6 +120,10 @@ export const useSeo = (seo: Ref<LazyHead>, initial: boolean = false) => {
120
120
  });
121
121
  });
122
122
 
123
+ if (seo.value.description) {
124
+ metas.push({ name: "description", content: seo.value.description });
125
+ }
126
+
123
127
  return metas;
124
128
  }),
125
129
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.5.9",
3
+ "version": "0.6.0",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {