Nuxt/examples/custom-routes/pages/posts/index.vue

18 lines
234 B
Vue
Raw Normal View History

2016-12-11 15:41:52 +00:00
<template>
<div class="container">
<h2>Posts list</h2>
<p>
<router-link to="/posts/welcome">
Welcome post
</router-link>
</p>
</div>
</template>
<style scoped>
p
{
text-align: center;
}
</style>