mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
16 lines
277 B
Vue
16 lines
277 B
Vue
|
<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>
|