mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
35 lines
643 B
Vue
Executable File
35 lines
643 B
Vue
Executable File
<template>
|
|
<div class="container">
|
|
<h1>Home page 🚀</h1>
|
|
<nuxt-link to="/about">About page</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head: {
|
|
title: 'Home page 🚀',
|
|
meta: [
|
|
{ hid: 'description', name: 'description', content: 'Home page description' }
|
|
],
|
|
noscript: [
|
|
{ innerHTML: 'Body No Scripts', body: true }
|
|
],
|
|
script: [
|
|
{ src: '/head.js' },
|
|
// Supported since 1.0
|
|
{ src: '/body.js', body: true },
|
|
{ src: '/defer.js', defer: '' }
|
|
]
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.container {
|
|
text-align: center;
|
|
margin-top: 150px;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|