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

16 lines
273 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>
2016-12-16 17:12:38 +00:00
<p><nuxt-link to="/about">About</nuxt-link></p>
2016-11-27 12:39:52 +00:00
</div>
</template>
<style scoped>
.container {
font-family: sans-serif;
margin-top: 200px;
text-align: center;
}
</style>