mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
21 lines
429 B
Vue
Executable File
21 lines
429 B
Vue
Executable File
<template>
|
|
<nuxt-head>
|
|
<title>I am the title of the page</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</nuxt-head>
|
|
|
|
<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>
|