Nuxt/examples/custom-routes/pages/posts/index.vue
Alexandre Chopin 1ee4f9c40e update example
2016-12-11 16:41:52 +01:00

18 lines
234 B
Vue

<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>