flowrix 1.0.1-beta.119 → 1.0.1-beta.120
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/dist/module.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import { ref, computed } from "vue";
|
|
2
2
|
import { useRoute, useRequestHeaders, useHead } from "#imports";
|
|
3
|
-
import magazineImg1 from "@/assets/images/single-blog/Mask Group 79.png";
|
|
4
|
-
import magazineImg2 from "@/assets/images/single-blog/Mask Group 80.png";
|
|
5
3
|
export const useBlogSingle = (props) => {
|
|
6
4
|
const route = useRoute();
|
|
7
5
|
const magazineCards = ref([
|
|
8
6
|
{
|
|
9
|
-
CardImg:
|
|
7
|
+
CardImg: "",
|
|
10
8
|
CardTitle: "What is Matter Technology and Why Does it Matter?"
|
|
11
9
|
},
|
|
12
10
|
{
|
|
13
|
-
CardImg:
|
|
11
|
+
CardImg: "",
|
|
14
12
|
CardTitle: "Easily convert your existing roller blinds into smart shades"
|
|
15
13
|
}
|
|
16
14
|
]);
|
|
@@ -11,6 +11,7 @@ export const useApp = () => {
|
|
|
11
11
|
const meta_title = companyProfile.profile?.data?.meta_title || "";
|
|
12
12
|
const meta_description = companyProfile.profile?.data?.meta_description || "";
|
|
13
13
|
const robots = companyProfile.profile?.data?.robots || "";
|
|
14
|
+
const logo = companyProfile.profile?.data?.logo || "";
|
|
14
15
|
let recaptcha = "";
|
|
15
16
|
if (companyProfile.profile?.data?.recaptcha) {
|
|
16
17
|
recaptcha = `https://www.google.com/recaptcha/api.js?render=${companyProfile.profile?.data?.recaptcha}`;
|
|
@@ -33,7 +34,12 @@ export const useApp = () => {
|
|
|
33
34
|
{
|
|
34
35
|
name: "robots",
|
|
35
36
|
content: robots
|
|
36
|
-
}
|
|
37
|
+
},
|
|
38
|
+
{ property: "og:title", content: meta_title },
|
|
39
|
+
{ property: "og:description", content: meta_description },
|
|
40
|
+
{ property: "og:type", content: "website" },
|
|
41
|
+
{ property: "og:url", content: `${websiteurl}${route.path}` },
|
|
42
|
+
{ property: "og:image", content: logo }
|
|
37
43
|
],
|
|
38
44
|
script: [
|
|
39
45
|
{
|