2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-24 13:20:33 +03:00

Merge pull request #220 from hieunguyentrung/fix-readme-open-graph

Fix Readme about open graph
This commit is contained in:
Sébastien Chopin
2018-07-05 18:01:32 +02:00
committed by GitHub
+2 -2
View File
@@ -461,10 +461,10 @@ Since v1.5.0, you can now set up meta templates that work similar to the titleTe
meta: [ meta: [
{ charset: 'utf-8' }, { charset: 'utf-8' },
{ {
'vmid': 'og:title',
'property': 'og:title', 'property': 'og:title',
'content': 'Test title', 'content': 'Test title',
'template': chunk => `${chunk} - My page` //or as string template: '%s - My page' 'template': chunk => `${chunk} - My page`, //or as string template: '%s - My page',
'vmid': 'og:title'
} }
] ]
} }