This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Blog.vue

16 lines
413 B
Vue
Raw Normal View History

<template>
2021-05-03 07:15:48 -07:00
<section v-if="Object.keys(config.links.blog).length">
<h2>
<Icon v="pen-nib"/>
2021-05-03 07:15:48 -07:00
<T>links.blog</T>
</h2>
<ul>
2021-05-03 07:15:48 -07:00
<li v-for="(title, slug) in config.links.blog" class="mb-2">
<nuxt-link :to="`/blog/${slug}`">
{{title}}
</nuxt-link>
</li>
</ul>
</section>
</template>