Nuxt/examples/head-elements/pages/index.vue

21 lines
429 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
<nuxt-head>
<title>I am the title of the page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</nuxt-head>
2016-11-07 01:34:58 +00:00
<h1>This page has a title 🤔</h1>
</template>
<script>
export default {
metaInfo: {
title: 'This page has a title 🤔',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
}
}
</script>