Forked from
funkwhale / funkwhale
5929 commits behind the upstream repository.
UsersList.vue 655 B
<template>
<main v-title="labels.users">
<section class="ui vertical stripe segment">
<h2 class="ui header"><translate :translate-context="'*/Admin/Title'">Users</translate></h2>
<div class="ui hidden divider"></div>
<users-table></users-table>
</section>
</main>
</template>
<script>
import UsersTable from "@/components/manage/users/UsersTable"
export default {
components: {
UsersTable
},
computed: {
labels() {
return {
users: this.$pgettext('*/Admin/Title', 'Users')
}
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>