Skip to content

Commit 8140a77

Browse files
author
Vue Play
committed
Stored by Vue Play
1 parent bbccdcc commit 8140a77

File tree

1 file changed

+35
-21
lines changed

1 file changed

+35
-21
lines changed

src/views/Pricing.vue

Lines changed: 35 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
<template>
22
<div class="space-y-0 bg-slate-100 flex flex-col h-screen">
3-
<!--Meta
4-
description="Try out the playground or use the full playground without any limitations."
5-
title="Pricing"
6-
>
7-
</Meta-->
3+
<!---->
84
<VueNavigator class="z-10" />
95
<header>
10-
<h1 class="text-6xl mt-12 mb-6">
11-
Pricing
12-
</h1>
6+
<h1 class="text-6xl mt-12 mb-6">Pricings</h1>
137
</header>
148
<main class="bg-slate-100 grow">
159
<section
@@ -63,11 +57,14 @@
6357
import Pricing from "@/components/Pricing.vue";
6458
import Footer from "@/components/Footer.vue";
6559
//import Meta from "@/components/Meta.vue";
60+
//import Meta from "@/components/Meta.vue";
61+
//import Meta from "@/components/Meta.vue";
62+
//import Meta from "@/components/Meta.vue";
6663
export default {
6764
components: {
6865
VueNavigator,
6966
Pricing,
70-
Footer,
67+
Footer
7168
//Meta
7269
},
7370
data: () => ({}),
@@ -80,18 +77,35 @@
8077
return {
8178
title: '2Pricing',
8279
titleTemplate: '%s | Health Tips',
83-
meta: [
84-
{ property: 'og:title', content: 'My Awesome Pricing' },
85-
{ property: 'og:description', content: 'This is an amazing website!' },
86-
{ property: 'og:image', content: 'https://example.com/image.jpg' },
87-
{ property: 'og:url', content: 'https://example.com/page' },
88-
{ property: 'og:type', content: 'website' },
89-
{ name: 'twitter:card', content: 'summary_large_image' },
90-
{ name: 'twitter:title', content: 'My Awesome Page' },
91-
{ name: 'twitter:description', content: 'This is an amazing website!' },
92-
{ name: 'twitter:image', content: 'https://example.com/image.jpg' }
93-
]
94-
}
80+
meta: [{
81+
property: 'og:title',
82+
content: 'My Awesome Pricing'
83+
}, {
84+
property: 'og:description',
85+
content: 'This is an amazing website!'
86+
}, {
87+
property: 'og:image',
88+
content: 'https://example.com/image.jpg'
89+
}, {
90+
property: 'og:url',
91+
content: 'https://example.com/page'
92+
}, {
93+
property: 'og:type',
94+
content: 'website'
95+
}, {
96+
name: 'twitter:card',
97+
content: 'summary_large_image'
98+
}, {
99+
name: 'twitter:title',
100+
content: 'My Awesome Page'
101+
}, {
102+
name: 'twitter:description',
103+
content: 'This is an amazing website!'
104+
}, {
105+
name: 'twitter:image',
106+
content: 'https://example.com/image.jpg'
107+
}]
108+
};
95109
}
96110
};
97111

0 commit comments

Comments
 (0)