-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhead.js
41 lines (34 loc) · 857 Bytes
/
head.js
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
// https://github.com/vueuse/head#useheadhead-headobject--refheadobject
// This file can either have individual exports matching the
// properties of @vueuse/useHead's HeadObject type (linked above)
export const title = null
export const base = null
export const meta = []
export const link = []
export const style = []
export const script = []
export const htmlAttrs = {}
export const bodyAttrs = {}
// Or a default export with the same properties
export default {
title: 'Pacchetto',
base: null,
meta: [
{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
}
],
link: [],
style: [],
script: [],
htmlAttrs: {
'lang': 'en'
},
bodyAttrs: {}
}
// If a default export is present, it'll be used over any
// other individually exported properties from the file