You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
417 B
Vue

<template>
<dl>
<div v-for="pathway in pathways" :key="pathway.slug">
<dt>
<router-link :to="`pathways/${pathway.slug}`">
{{pathway.title}}
</router-link>
</dt>
<dd>{{pathway.description}}</dd>
</div>
</dl>
</template>
<script setup>
const props = defineProps(['pathways'])
</script>
<style></style>