11 lines
241 B
Vue
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>
|