16 lines
242 B
Vue
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> |