Nuxt/examples/hello-world/pages/about.vue

26 lines
461 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
<div class="container">
2016-11-10 01:19:47 +00:00
<img src="/nuxt-square.png" />
<h2>Thank you for testing nuxt.js</h2>
<p><router-link to="/">Back home</router-link></p>
</div>
2016-11-07 01:34:58 +00:00
</template>
<style scoped>
.container {
2016-11-10 01:19:47 +00:00
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;
}
2016-11-10 01:19:47 +00:00
a {
color: silver;
}
</style>