Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 20, 2018 06:27
Show Gist options
  • Save hibuno/f23b7ccd5f094a20cf0c8938c2e3a591 to your computer and use it in GitHub Desktop.
Save hibuno/f23b7ccd5f094a20cf0c8938c2e3a591 to your computer and use it in GitHub Desktop.
Example of vue meta
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