mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
16 lines
280 B
Vue
16 lines
280 B
Vue
|
<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>
|