mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
37 lines
624 B
Vue
Executable File
37 lines
624 B
Vue
Executable File
<template>
|
|
<div class="container">
|
|
<img src="~static/nuxt-black.png" />
|
|
<h2>Thank you for testing nuxt.js</h2>
|
|
<p>Loaded from the {{ name }}</p>
|
|
<p><router-link to="/">Back home</router-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data ({ req }) {
|
|
return {
|
|
name: req ? 'server' : 'client'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: black;
|
|
color: white;
|
|
font-family: "Lucida Console", Monaco, monospace;
|
|
padding-top: 130px;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: silver;
|
|
}
|
|
</style>
|