mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
18 lines
234 B
Vue
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>
|