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

19 lines
307 B
Vue
Raw Normal View History

2016-12-11 15:41:52 +00:00
<template>
<div class="container">
<h1>Dynamic route example</h1>
<h2>Projects list</h2>
<p>
<router-link :to="{ name: 'projects-slug', params: { slug: 'nuxt.js'} }">
Nuxt.js
</router-link>
</p>
</div>
</template>
<style scoped>
p
{
text-align: center;
}
</style>