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

16 lines
280 B
Vue
Executable File

<template>
<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>