mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
8ab135af55
Alpha 0.1.0
16 lines
280 B
Vue
Executable File
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>
|