mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
d88948bdea
v0.3.0
16 lines
278 B
Vue
Executable File
16 lines
278 B
Vue
Executable File
<template>
|
|
<div class="container">
|
|
<img src="/nuxt.png" />
|
|
<h2>Hello World.</h2>
|
|
<p><router-link to="/about">About</router-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-family: sans-serif;
|
|
margin-top: 200px;
|
|
text-align: center;
|
|
}
|
|
</style>
|