Files
cmms/vue/routes/settings/users.vue
T
2026-09-11 16:06:49 +02:00

16 lines
242 B
Vue

<template>
<table class="table">
<thead>
<tr>
<th>user</th>
<th>email</th>
<th>group</th>
</tr>
</thead>
</table>
</template>
<script setup>
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>