2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-11 12:22:24 +03:00

Fix Readme about open graph

This commit is contained in:
Hieu Nguyen
2018-05-23 15:23:14 +07:00
parent 49fe9462fd
commit f7adc6b685
+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: [
{ charset: 'utf-8' },
{
'vmid': 'og:title',
'property': 'og: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'
}
]
}