Nuxt/examples/static-images/pages/index.vue

16 lines
277 B
Vue
Raw Normal View History

2016-11-27 12:39:52 +00:00
<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>