20 lines
434 B
Vue
20 lines
434 B
Vue
<template>
|
|
<container>
|
|
<h2>Blog</h2>
|
|
<ul>
|
|
<li><router-link :to="{ name: 'blog' }">View blog articles</router-link></li>
|
|
<li><router-link :to="{ name: 'blog-article-create' }">Create blog post</router-link></li>
|
|
</ul>
|
|
</container>
|
|
</template>
|
|
|
|
<script>
|
|
import Container from "../components/Container.vue"
|
|
|
|
export default {
|
|
components: {
|
|
Container,
|
|
},
|
|
}
|
|
</script>
|