This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/src/script/views/Users.vue

21 lines
362 B
Vue

<template lang="pug">
.root
h1 Welcome to the Admin Panel
.row.mt-4
.col
user-list
.col
ban-list
</template>
<script type="text/javascript">
import UserList from '../component/UserList.vue'
import BanList from '../component/BanList.vue'
export default {
components: {
UserList, BanList
}
}
</script>