Created
January 20, 2018 06:27
-
-
Save hibuno/f23b7ccd5f094a20cf0c8938c2e3a591 to your computer and use it in GitHub Desktop.
Example of vue meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
/* | |
** Headers of the page | |
*/ | |
head: { | |
title: 'example', | |
meta: [ | |
{ charset: 'utf-8' }, | |
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, | |
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }, | |
// example vue-meta | |
{ hid: 'title', name: 'title', content: 'Nuxt.js project' } | |
], | |
link: [ | |
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } | |
] | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment