Files
memberApp/src/pages/GroupTable.vue
2025-11-15 14:17:30 +01:00

11 lines
241 B
Vue

<template>
<q-page>
<h4 class="text-primary text-bold text-center">{{ $t('groups') }}</h4>
<GroupTable />
</q-page>
</template>
<script setup lang="ts">
import GroupTable from 'src/vueLib/tables/group/GroupTable.vue';
</script>