This repository was archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
51 lines (49 loc) · 1.33 KB
/
app.vue
File metadata and controls
51 lines (49 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
<NuxtLayout>
<NuxtPage />
<notifications position="bottom right" />
</NuxtLayout>
</template>
<script setup lang="ts">
import { PAGE_TITLE } from '~/constants/text';
useHead({
title: PAGE_TITLE,
meta: [
{
hid: 'og:site_name',
property: 'og:site_name',
content: PAGE_TITLE,
},
{ hid: 'og:type', property: 'og:type', content: 'website' },
{ hid: 'twitter:site', name: 'twitter:site', content: '@VueStorefront' },
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image',
},
{
hid: 'og:image',
property: 'og:image',
content:
'https://repository-images.githubusercontent.com/497115253/df260e4b-c48c-4725-bf92-54328494a30d',
},
{
hid: 'og:image:secure_url',
property: 'og:image:secure_url',
content:
'https://repository-images.githubusercontent.com/497115253/df260e4b-c48c-4725-bf92-54328494a30d',
},
{
hid: 'og:image:alt',
property: 'og:image:alt',
content: PAGE_TITLE,
},
{
hid: 'twitter:image',
name: 'twitter:image',
content:
'https://repository-images.githubusercontent.com/497115253/df260e4b-c48c-4725-bf92-54328494a30d',
},
],
});
</script>