Nuxt/examples/hello-world/pages/index.vue
2016-11-08 18:14:16 +01:00

16 lines
285 B
Vue
Executable File

<template>
<div class="container">
<img src="/static/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>