mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-08 23:14:43 -04:00
18 lines
488 B
Vue
18 lines
488 B
Vue
<script setup lang="ts">
|
|
import { loadNounConventions } from '~/src/data.ts';
|
|
|
|
const nounConventions = await loadNounConventions();
|
|
</script>
|
|
|
|
<template>
|
|
<ul v-if="nounConventions" class="list-group mt-4">
|
|
<li
|
|
v-for="nounConventionGroup of withKey(nounConventions.groups)"
|
|
:key="nounConventionGroup.key"
|
|
class="list-group-item"
|
|
>
|
|
<NounsConventionsIndexGroup :noun-convention-group />
|
|
</li>
|
|
</ul>
|
|
</template>
|