mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
* feat(docs) new docs site started * Minor page edits * feat(footer) fix spacing * empty guides template Co-authored-by: daffl <daff@neyeon.com>
16 lines
315 B
Vue
16 lines
315 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
title: String,
|
|
items: Array,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ul class="text-lg">
|
|
<li class="list-title font-bold text-2xl mb-4">{{ title }}</li>
|
|
<li v-for="item in items" :key="item.title">
|
|
<a :href="item.link">{{ item.label }}</a>
|
|
</li>
|
|
</ul>
|
|
</template>
|