mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
16 lines
273 B
Vue
16 lines
273 B
Vue
<template>
|
|
<div class="container">
|
|
<img src="nuxt.png" />
|
|
<h2>Hello World.</h2>
|
|
<p><nuxt-link to="/about">About</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-family: sans-serif;
|
|
margin-top: 200px;
|
|
text-align: center;
|
|
}
|
|
</style>
|