Nuxt/examples/hello-world/pages/about.vue

16 lines
267 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<template>
<div class="container">
<img src="/static/nuxt.png" />
<h2>About</h2>
<p><router-link to='/'>Home</router-link></p>
</div>
2016-11-07 01:34:58 +00:00
</template>
<style scoped>
.container {
font-family: serif;
margin-top: 200px;
text-align: center;
}
</style>